X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Makefile;h=eee47577ae34509e838b098751194a46f9ea6b50;hb=c7aa2a9872c31ca6be58f3a95b42e7bd0c14c116;hp=88d58dc3e9d4c59520c86f2642501e2b345cb817;hpb=c2ca299be7f2663544d4d3ebd85ee19b5011b190;p=osm%2FN2VC.git diff --git a/Makefile b/Makefile index 88d58dc..eee4757 100644 --- 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