Skip to content

Commit 6295d5b

Browse files
committed
Add run-unit-tests & run-integration-tests targets to Makefile
1 parent 3bb530d commit 6295d5b

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

Makefile

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,17 @@ client:
1919
tox -r --notest -e lint,py3
2020
$(PY) -m juju.client.facade -s "juju/client/schemas*" -o juju/client/
2121

22-
.PHONY: test
23-
test: lint
22+
.PHONY: run-unit-tests
23+
run-unit-tests: lint .tox
2424
tox -e py3
25+
26+
.PHONY: run-integration-tests
27+
run-unit-tests: lint .tox
2528
tox -e integration
2629

30+
.PHONY: run-all-tests
31+
test: run-unit-tests run-integration-tests
32+
2733
.PHONY: lint
2834
lint:
2935
@./scripts/copyright.sh

0 commit comments

Comments
 (0)