Skip to content

Commit

Permalink
fix: integration tests target in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
magajh committed Oct 15, 2024
1 parent 604bec0 commit 292c269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ requirements: ## install environment requirements

install-dev-dependencies: ## install tox
pip install -r requirements/tox.txt
pip install -r requirements/test.txt

upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade
upgrade: ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in
Expand All @@ -42,7 +41,8 @@ upgrade: ## update the requirements/*.txt files with the latest packages satisfy
sed '/^[dD]jango==/d;' requirements/test.txt > requirements/test.tmp
mv requirements/test.tmp requirements/test.txt

run-integration-tests: install-dev-dependencies
run-integration-tests:
pip install -r requirements/test.txt
pytest -rPf ./eox_tenant/test/integration

quality: clean ## check coding style with pycodestyle and pylint
Expand Down

0 comments on commit 292c269

Please sign in to comment.