19 lines
340 B
Makefile
19 lines
340 B
Makefile
#!/usr/bin/make
|
|
|
|
lint:
|
|
@echo -n "Running flake8 tests: "
|
|
@flake8 --exclude hooks/charmhelpers hooks
|
|
@flake8 unit_tests
|
|
@echo "OK"
|
|
@echo -n "Running charm proof: "
|
|
@charm proof
|
|
@echo "OK"
|
|
|
|
sync:
|
|
@charm-helper-sync -c charm-helpers.yaml
|
|
|
|
test:
|
|
@$(PYTHON) /usr/bin/nosetests --nologcapture --with-coverage unit_tests
|
|
|
|
all: test lint
|