File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,14 +35,17 @@ bin/setup
3535export PATH=" $HOME /.pyenv/shims:$PATH "
3636
3737# Run tests
38- poetry shell
39- tox -e py312-core # Quick test on Python 3.12
40- tox # Full test suite
41- paver format # Format code
38+ poetry run tox -e py312-core # Quick test on Python 3.12
39+ poetry run tox # Full test suite
40+
41+ # Code formatting and linting
42+ poetry run paver format # Format code (autoflake, isort, black)
43+ poetry run paver check # Check formatting without applying
44+ poetry run paver test # Run tests with coverage
45+ poetry run paver doc # Build documentation
46+ poetry run paver # Default: format + test
4247```
4348
44- See ` paver --help ` for additional tasks.
45-
4649## Release
4750
48511 . Update the ` version ` property in ` pyproject.toml ` .
Original file line number Diff line number Diff line change @@ -30,8 +30,7 @@ echo " export PATH=\"\$HOME/.pyenv/shims:\$PATH\""
3030echo " "
3131echo " Then restart your shell and run:"
3232echo " "
33- echo " poetry shell # Enter development environment"
34- echo " tox -e py312-core # Quick test"
35- echo " tox # Full test suite"
36- echo " paver format # Format code"
33+ echo " poetry run tox -e py312-core # Quick test"
34+ echo " poetry run tox # Full test suite"
35+ echo " poetry run paver format # Format code"
3736echo " "
You can’t perform that action at this time.
0 commit comments