Add support for deploying local bundles
[osm/N2VC.git] / Makefile
index 88d58dc..eee4757 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,17 @@
 PY := .tox/py35/bin/python3.5
 
+clean:
+       find . -name __pycache__ -type d -exec rm -r {} +
+       find . -name *.pyc -delete
+       rm -rf .tox
+
 .tox:
        tox -r --notest
 
 client:
-       $(PY) -m juju.client.facade -s juju/client/schemas.json -o juju/client/client.py
+       $(PY) -m juju.client.facade -s juju/client/schemas.json -o juju/client/_client.py
+
+test:
+       tox
+
+.phony: clean client test