Skip to content

Commit 5621077

Browse files
committed
docs: recommend project scripts
1 parent 3ad20d2 commit 5621077

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.claude/CLAUDE.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,17 @@ A virtual environment (`.venv`) should be activated before running any commands.
1313
## Common Commands
1414

1515
### Testing
16+
17+
Always use the project scripts instead of calling `pytest` directly:
1618
```bash
1719
# Run all tests (installs deps, formats, lints, tests, typechecks)
1820
./scripts/install_all_and_run_tests.sh
1921

2022
# Run a single test file
2123
./scripts/run_tests.sh tests/scenario_tests/test_app.py
2224

23-
# Run a single test directly (skip formatting)
24-
pytest -vv tests/scenario_tests/test_app.py
25-
2625
# Run a single test function
27-
pytest -vv tests/scenario_tests/test_app.py::TestApp::test_name
26+
./scripts/run_tests.sh tests/scenario_tests/test_app.py::TestApp::test_name
2827
```
2928

3029
### Formatting, Linting, Type Checking

0 commit comments

Comments
 (0)