Added juju.model.connect_model()
[osm/N2VC.git] / Makefile
1 PY := .tox/py35/bin/python3.5
2
3 clean:
4 find . -name __pycache__ -type d -exec rm -r {} +
5 find . -name *.pyc -delete
6 rm -rf .tox
7
8 .tox:
9 tox -r --notest
10
11 client:
12 $(PY) -m juju.client.facade -s juju/client/schemas.json -o juju/client/_client.py
13
14 test:
15 tox
16
17 .phony: clean client test