| 1234567891011121314151617 |
- [tox]
- env_list =
- py311
- minversion = 4.26.0
- [testenv]
- description = run the tests with pytest
- package = wheel
- wheel_build_env = .pkg
- deps =
- pytest>=6
- commands =
- pytest {tty:--color=yes} {posargs}
- [flake8]
- exclude = .eggs, .tox, venv
- max-line-length = 100
|