Skip to content

Commit 1cc7d2d

Browse files
committed
fix(makefile): run .tox before lint in makefile target
1 parent b569634 commit 1cc7d2d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ client:
2020
$(PY) -m juju.client.facade -s "juju/client/schemas*" -o juju/client/
2121

2222
.PHONY: run-unit-tests
23-
run-unit-tests: lint .tox
23+
run-unit-tests: .tox lint
2424
tox -e py3
2525

2626
.PHONY: run-integration-tests
27-
run-integration-tests: lint .tox
27+
run-integration-tests: .tox lint
2828
tox -e integration
2929

3030
.PHONY: run-all-tests

0 commit comments

Comments
 (0)