Skip to content

Commit 9ff3784

Browse files
Apply suggestions from code review
Co-authored-by: Bingran Hu <[email protected]>
1 parent 27858df commit 9ff3784

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/src/dev-docs/testing/integration-tests.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ Ensure all commands below are run from inside the `integration-tests` directory.
3131
To list all available markers:
3232

3333
```shell
34-
uv run pytest --markers
34+
uv run python -m pytest --markers
3535
```
3636

3737
To run tests related to a specific marker (e.g., `clp_s`):
3838

3939
```shell
40-
uv run pytest -m clp_s
40+
uv run python -m pytest -m clp_s
4141
```
4242

4343
### Specifying custom CLP binary paths

taskfiles/tests/integration.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ tasks:
2222
CLP_BUILD_DIR: "{{.G_BUILD_DIR}}"
2323
CLP_CORE_BINS_DIR: "{{.G_CORE_COMPONENT_BUILD_DIR}}"
2424
CLP_PACKAGE_DIR: "{{.G_PACKAGE_BUILD_DIR}}"
25-
cmd: "uv run pytest -m core"
25+
cmd: "uv run python -m pytest -m core"
2626

2727
clp-py-project-imports:
2828
dir: "{{.G_INTEGRATION_TESTS_DIR}}"
29-
cmd: "uv run pytest tests/test_clp_native_py_project_imports.py"
29+
cmd: "uv run python -m pytest tests/test_clp_native_py_project_imports.py"

0 commit comments

Comments
 (0)