blob: f88ea10ae46c07c830d54663b76b53acf52a159f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
[tox]
env_list =
py311
minversion = 4.6.4
[testenv]
description = run the tests with pytest
package = wheel
wheel_build_env = .pkg
deps =
pytest>=6
commands =
pytest {tty:--color=yes} {posargs}
|