tox.ini 267 B

1234567891011121314151617
  1. [tox]
  2. env_list =
  3. py311
  4. minversion = 4.26.0
  5. [testenv]
  6. description = run the tests with pytest
  7. package = wheel
  8. wheel_build_env = .pkg
  9. deps =
  10. pytest>=6
  11. commands =
  12. pytest {tty:--color=yes} {posargs}
  13. [flake8]
  14. exclude = .eggs, .tox, venv
  15. max-line-length = 100