Skip to content
Snippets Groups Projects
Commit a4c593fd authored by James Briggs's avatar James Briggs
Browse files

feat: modify pytest to exit on first fail

parent 7eafd8f8
No related branches found
No related tags found
No related merge requests found
...@@ -15,8 +15,8 @@ test: ...@@ -15,8 +15,8 @@ test:
poetry run pytest -vv --cov=semantic_router --cov-report=term-missing --cov-report=xml poetry run pytest -vv --cov=semantic_router --cov-report=term-missing --cov-report=xml
test_functional: test_functional:
poetry run pytest -vv -n 20 tests/functional poetry run pytest -vv --exitfirst --maxfail=1 --max-parallel=20 tests/functional
test_unit: test_unit:
poetry run pytest -vv -n 20 tests/unit poetry run pytest -vv --exitfirst --maxfail=1 --max-parallel=20 tests/unit
test_integration: test_integration:
poetry run pytest -vv -n 20 tests/integration poetry run pytest -vv --exitfirst --maxfail=1 --max-parallel=20 tests/integration
\ No newline at end of file
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