James Page 5263434412 [yolanda] Add postgresql support
Refactor templates for includes
2014-03-31 12:29:37 +01:00

18 lines
325 B
Makefile

#!/usr/bin/make
lint:
@echo "Running flake8 tests: "
@flake8 --exclude hooks/charmhelpers hooks unit_tests
@echo "OK"
@echo "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