From 1cc7d2d3e8752c0b63e806d6663473b787f93269 Mon Sep 17 00:00:00 2001 From: Caner Derici Date: Wed, 10 Jul 2024 16:03:27 +0000 Subject: [PATCH] fix(makefile): run .tox before lint in makefile target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 9e0b1622..81b1cbb3 100644 --- a/Makefile +++ b/Makefile @@ -20,11 +20,11 @@ client: $(PY) -m juju.client.facade -s "juju/client/schemas*" -o juju/client/ .PHONY: run-unit-tests -run-unit-tests: lint .tox +run-unit-tests: .tox lint tox -e py3 .PHONY: run-integration-tests -run-integration-tests: lint .tox +run-integration-tests: .tox lint tox -e integration .PHONY: run-all-tests