tox.ini 514 B

12345678910111213141516171819202122232425
  1. [tox]
  2. envlist = py{27,35,36,37,38}
  3. skipsdist = True
  4. # If the user is missing an interpreter, don't fail
  5. skip_missing_interpreters = True
  6. [testenv]
  7. usedevelop = True
  8. deps =
  9. -rrequirements-testing.txt
  10. -rrequirements-ev.txt
  11. python-openid
  12. python-openid-teams
  13. python-openid-cla
  14. pytest-xdist
  15. pytest-cov
  16. pytest
  17. install_command =
  18. pip install {opts} {packages}
  19. setenv =
  20. PAGURE_CONFIG={toxinidir}/tests/test_config
  21. PYTHONPATH={toxinidir}
  22. commands =
  23. pytest -n auto {posargs}