diff --git a/Makefile b/Makefile index 624dc4704c2927c861ff2781fa84fb91ba9a02e9..8bc17e0331975d2c67f07c8dc9e948877b75bb9b 100644 --- a/Makefile +++ b/Makefile @@ -12,11 +12,11 @@ lint lint_diff: poetry run mypy $(PYTHON_FILES) 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 --exitfirst --maxfail=1 test_functional: - poetry run pytest -vv --exitfirst --maxfail=1 --max-parallel=20 tests/functional + poetry run pytest -vv --exitfirst --maxfail=1 tests/functional test_unit: - poetry run pytest -vv --exitfirst --maxfail=1 --max-parallel=20 tests/unit + poetry run pytest -vv --exitfirst --maxfail=1 tests/unit test_integration: - poetry run pytest -vv --exitfirst --maxfail=1 --max-parallel=20 tests/integration + poetry run pytest -vv --exitfirst --maxfail=1 tests/integration