Commit 03c90c29 by Matt Tuchfarber Committed by Matt Tuchfarber

Fix make test command

DJANGO_SETTINGS_MODULE in pytest.ini was being overriden by the
environment variable version of it. This overrides the setting in
the make command.
parent e2d642d2
......@@ -44,7 +44,7 @@ production-requirements: ## Install Python and JS requirements for production
test: clean ## Run tests and generate coverage report
## The node_modules .bin directory is added to ensure we have access to Geckodriver.
PATH="$(NODE_BIN):$(PATH)" coverage run -m pytest --durations=25
PATH="$(NODE_BIN):$(PATH)" coverage run -m pytest --ds=course_discovery.settings.test --durations=25
coverage combine
coverage report
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment