From 12595b47cdea0ae5371c6351ac0fc62f9d19e062 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 2 Oct 2024 09:30:37 +0200 Subject: [PATCH] Fix Makefile target to use Python 3.12 Signed-off-by: Petr "Stone" Hracek --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 97a95a6..1522948 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,3 @@ -.PHONY: test-openshift-4 -test-openshift-4: - cd tests && PYTHONPATH=$(CURDIR) python3 -m pytest --verbose --color=yes --showlocals . \ No newline at end of file +.PHONY: test-openshift-pytest +test-openshift-pytest: + cd tests && PYTHONPATH=$(CURDIR) python3.12 -m pytest -s -rA --showlocals -vv test_dancer*.py