From 6295d5b94320b651f82fb88d6a5fa3da55289a9c Mon Sep 17 00:00:00 2001 From: Caner Derici Date: Tue, 23 Jan 2024 14:09:20 -0700 Subject: [PATCH] Add run-unit-tests & run-integration-tests targets to Makefile --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0187cebc..e3d141e1 100644 --- a/Makefile +++ b/Makefile @@ -19,11 +19,17 @@ client: tox -r --notest -e lint,py3 $(PY) -m juju.client.facade -s "juju/client/schemas*" -o juju/client/ -.PHONY: test -test: lint +.PHONY: run-unit-tests +run-unit-tests: lint .tox tox -e py3 + +.PHONY: run-integration-tests +run-unit-tests: lint .tox tox -e integration +.PHONY: run-all-tests +test: run-unit-tests run-integration-tests + .PHONY: lint lint: @./scripts/copyright.sh