12 lines
211 B
Makefile
12 lines
211 B
Makefile
#!/usr/bin/make
|
|
|
|
lint:
|
|
@flake8 --exclude hooks/charmhelpers hooks
|
|
@charm proof
|
|
|
|
sync:
|
|
@charm-helper-sync -c charm-helpers.yaml
|
|
|
|
test:
|
|
@$(PYTHON) /usr/bin/nosetests --nologcapture --with-coverage unit_tests
|