diff options
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 27 |
1 files changed, 27 insertions, 0 deletions
@@ -0,0 +1,27 @@ +[tox] +env_list = + py{36, 37, 38, 39, 310, 311} +minversion = 4.4.8 + +[testenv] +description = run the tests with all dependencies installed +package = wheel +wheel_build_env = .pkg +deps = + lxml + html5lib + soupsieve>=1.2 + pytest>=6 +commands = + pytest {tty:--color=yes} {posargs} + +[testenv:oldpy] +description = run the tests on a very old version of Python without any dependencies installed +basepython = py36 +package = wheel +wheel_build_env = .pkg +deps = + pytest>=6 +commands = + pytest {tty:--color=yes} {posargs} + |