We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 40caed6 + e75323d commit 004b294Copy full SHA for 004b294
1 file changed
CONTRIBUTING.md
@@ -49,6 +49,24 @@ git checkout -b feat/your-feature-name
49
50
### 4. Test Your Changes
51
52
+Run the full test suite:
53
+
54
+```bash
55
+pytest tests/ -x -q
56
+```
57
58
+Run a specific test file:
59
60
61
+pytest tests/test_pipeline.py -v
62
63
64
+Run tests matching a keyword:
65
66
67
+pytest tests/ -k "compression" -v
68
69
70
```bash
71
# Run the full test suite
72
pytest tests/ -x -q
0 commit comments