123456789101112131415161718192021222324 |
- [tox]
- envlist = py{35,36,37,38,39}
- skipsdist = True
- # If the user is missing an interpreter, don't fail
- skip_missing_interpreters = True
- [testenv]
- usedevelop = True
- deps =
- -rrequirements-testing.txt
- python-openid
- python-openid-teams
- python-openid-cla
- pytest-xdist
- pytest-cov
- pytest
- install_command =
- pip install {opts} {packages}
- setenv =
- PAGURE_CONFIG={toxinidir}/tests/test_config
- PYTHONPATH={toxinidir}
- commands =
- pytest -n auto {posargs}
|