File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Repository Guidance
2+
3+ See [ README.md] ( README.md ) for contributor setup.
4+
5+ ## Tests
6+
7+ Before wrapping up a change, run the relevant validation commands from the
8+ README:
9+
10+ ``` zsh
11+ tox --parallel # Test all Python versions
12+ tox -e py310 # Test specific Python version
13+ ruff format . # Format code
14+ ```
15+
16+ Prefer the minimum Python version while iterating, ` tox -e py310 ` . Then use
17+ broader validation when the scope of the change warrants it.
18+
19+ Most ` tox ` environments forward to ` pytest ` . To focus one environment's tests,
20+ use a ` pytest ` selector such as ` tox -e py310 -- -k private ` , or run a specific
21+ test file such as ` tox -e py310 -- tests/cli_test.py ` .
Original file line number Diff line number Diff line change 1+ AGENTS.md
Original file line number Diff line number Diff line change @@ -196,7 +196,7 @@ See [URL validation](#url-validation) and
196196
197197``` zsh
198198tox --parallel # Test all Python versions
199- tox -e py311 # Test specific Python version
199+ tox -e py310 # Test specific Python version
200200ruff format . # Format code
201201```
202202
You can’t perform that action at this time.
0 commit comments