From 698e1d2e9c5386c152f2c5704c5313995ce18e5b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rajmund=20Hru=C5=A1ka?= <rajmund.hruska@gmail.com> Date: Thu, 8 Jun 2023 10:47:19 +0200 Subject: [PATCH] Output test results in xml file --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index bdcb315d..8868f52a 100644 --- a/Makefile +++ b/Makefile @@ -613,7 +613,7 @@ pylint-pedantic: FORCE test: FORCE @echo "\n$(GREEN)*** Checking code with nosetests ***$(NC)\n" @echo "Python version: `$(PYTHON) --version`" - APP_ROOT_PATH=$(shell realpath ./chroot) PYTHONPATH=$(DIR_LIB) $(PYTHON) -W always::DeprecationWarning -m nose2 + APP_ROOT_PATH=$(shell realpath ./chroot) PYTHONPATH=$(DIR_LIB) $(PYTHON) -W always::DeprecationWarning -m nose2 --junit-xml coverage: FORCE @echo "\n$(GREEN)*** Checking test code coverage with nosetests and coverage ***$(NC)\n" -- GitLab