tox.ini 422 B

12345678910111213141516171819202122232425
  1. [tox]
  2. isolated_build = True
  3. envlist = python
  4. [gh-actions]
  5. python =
  6. 3.6: python
  7. 3.7: python
  8. 3.8: python
  9. 3.9: python
  10. [testenv]
  11. deps = pytest
  12. pytest-cov
  13. requests
  14. requests_download
  15. distlib
  16. jinja2
  17. yarg
  18. testpath
  19. responses
  20. commands = pytest --cov=nsist nsist/tests {posargs}
  21. [testenv:notnetwork]
  22. commands = pytest -m "not network" nsist/tests {posargs}