Skip to content

Commit 004b294

Browse files
authored
Merge pull request #8 from alenay2/docs/improve-contributing
docs: add specific test commands to contributing guide
2 parents 40caed6 + e75323d commit 004b294

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

CONTRIBUTING.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,24 @@ git checkout -b feat/your-feature-name
4949

5050
### 4. Test Your Changes
5151

52+
Run the full test suite:
53+
54+
```bash
55+
pytest tests/ -x -q
56+
```
57+
58+
Run a specific test file:
59+
60+
```bash
61+
pytest tests/test_pipeline.py -v
62+
```
63+
64+
Run tests matching a keyword:
65+
66+
```bash
67+
pytest tests/ -k "compression" -v
68+
```
69+
5270
```bash
5371
# Run the full test suite
5472
pytest tests/ -x -q

0 commit comments

Comments
 (0)