Context
This PR made a partial change to use pytest directly instead of python -m pytest in the integration test tasks. However, there are still remaining occurrences that should be updated for consistency.
Remaining Occurrences
All occurrences are in taskfiles/tests/integration.yaml:
- Line 16:
uv run python -m pytest --cache-clear --collect-only --override-ini addopts="" --quiet
- Line 31:
uv run python -m pytest tests/test_clp_native_py_project_imports.py
Goal
Standardise all pytest invocations across the integration test tasks to use pytest directly rather than python -m pytest.
References
Context
This PR made a partial change to use
pytestdirectly instead ofpython -m pytestin the integration test tasks. However, there are still remaining occurrences that should be updated for consistency.Remaining Occurrences
All occurrences are in
taskfiles/tests/integration.yaml:uv run python -m pytest --cache-clear --collect-only --override-ini addopts="" --quietuv run python -m pytest tests/test_clp_native_py_project_imports.pyGoal
Standardise all pytest invocations across the integration test tasks to use
pytestdirectly rather thanpython -m pytest.References