12345678910111213141516171819202122232425 |
- [tox]
- isolated_build = True
- envlist = python
- [gh-actions]
- python =
- 3.6: python
- 3.7: python
- 3.8: python
- 3.9: python
- [testenv]
- deps = pytest
- pytest-cov
- requests
- requests_download
- distlib
- jinja2
- yarg
- testpath
- responses
- commands = pytest --cov=nsist nsist/tests {posargs}
- [testenv:notnetwork]
- commands = pytest -m "not network" nsist/tests {posargs}
|