1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
CHARM_DIR := $(shell pwd)
test: lint unit_test integration_test
unit_test:
cd hooks && trial test_hooks.py
integration_test:
echo "Integration tests using Juju deployed units"
TEST_TIMEOUT=900 ./test.py -v
lint:
@flake8 hooks # requires python-flakes8
|