Skip to content
Snippets Groups Projects
Commit f27c5737 authored by Chad Hanna's avatar Chad Hanna
Browse files

Merge branch 'mr-makefile-pythonpath' into 'main'

allow specifying PYTHONPATH for makefile test target

See merge request !74
parents 82b4c08b c402963f
No related branches found
No related tags found
1 merge request!74allow specifying PYTHONPATH for makefile test target
Pipeline #686129 passed
ifeq ($(PYTHONPATH),)
PYTHONPATH := src
else
PYTHONPATH := src:$(PYTHONPATH)
endif
export PYTHONPATH
.PHONY: help
help :
@echo
......@@ -11,7 +19,7 @@ help :
.PHONY: test
test :
PYTHONPATH=src pytest -v --cov=sgnts --cov-report=term-missing .
pytest -v --cov=sgnts --cov-report=term-missing .
.PHONY: lint
lint :
......
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