tox.ini 232 B

12345678910111213
  1. [tox]
  2. env_list = py3{8,9,10,11,12,13}
  3. minversion = 4.23.2
  4. [testenv]
  5. description = run the tests with pytest
  6. package = wheel
  7. wheel_build_env = .pkg
  8. deps =
  9. pytest>=6
  10. extras = dev
  11. commands =
  12. pytest {tty:--color=yes} {posargs}