Skip to content
Snippets Groups Projects
Commit dcebd00a authored by Jakub Judiny's avatar Jakub Judiny
Browse files

Fix: use variable in make coverage

(Redmine issue: #7632)
parent d2b28d68
No related branches found
No related tags found
No related merge requests found
...@@ -607,7 +607,7 @@ test: FORCE ...@@ -607,7 +607,7 @@ test: FORCE
coverage: FORCE coverage: FORCE
@echo "\n$(GREEN)*** Checking test code coverage with nosetests and coverage ***$(NC)\n" @echo "\n$(GREEN)*** Checking test code coverage with nosetests and coverage ***$(NC)\n"
@echo "Python version: `$(PYTHON) --version`" @echo "Python version: `$(PYTHON) --version`"
APP_ROOT_PATH=$(shell realpath ./chroot) PYTHONPATH=$(DIR_LIB) $(COVERAGE) run -m nose2 && echo "\n\n" && coverage report APP_ROOT_PATH=$(shell realpath ./chroot) PYTHONPATH=$(DIR_LIB) $(COVERAGE) run -m nose2 && echo "\n\n" && $(COVERAGE) report
#------------------------------------------------------------------------------- #-------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment