We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bb530d commit 6295d5bCopy full SHA for 6295d5b
1 file changed
Makefile
@@ -19,11 +19,17 @@ client:
19
tox -r --notest -e lint,py3
20
$(PY) -m juju.client.facade -s "juju/client/schemas*" -o juju/client/
21
22
-.PHONY: test
23
-test: lint
+.PHONY: run-unit-tests
+run-unit-tests: lint .tox
24
tox -e py3
25
+
26
+.PHONY: run-integration-tests
27
28
tox -e integration
29
30
+.PHONY: run-all-tests
31
+test: run-unit-tests run-integration-tests
32
33
.PHONY: lint
34
lint:
35
@./scripts/copyright.sh
0 commit comments