From a815ec0ec2d438eb96412c0828be2dc6733307ec Mon Sep 17 00:00:00 2001 From: Jonathan Giannuzzi Date: Sat, 4 Nov 2023 18:17:20 -0500 Subject: [PATCH] Add a new make target "test" to run all of our tests --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 61f525f33..22b3269ce 100644 --- a/Makefile +++ b/Makefile @@ -130,6 +130,9 @@ python-lint: python-env ## check python code formatting. # # Tests targets. # +.PHONY: test +test: test-go-unit service-test test-python-integration ## run all the tests. + .PHONY: test-go-unit test-go-unit: ## run go unit tests. @echo ">>> Running unit tests."