diff options
| author | Matthew Treinish <mtreinish@kortar.org> | 2020-11-17 11:39:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-17 11:39:29 -0500 |
| commit | f6cccbf199efa1fc05b7d55b38327ec56cff6325 (patch) | |
| tree | 563b208d1b6ad3d12e9c5f3de5e758203d68fac8 | |
| parent | f27acbecd699cc39d31300b7b51105bdbfde0aaa (diff) | |
| parent | f3fbef22d190f1d83334cdff652cb5fb7f9f91a3 (diff) | |
| download | testtools-f6cccbf199efa1fc05b7d55b38327ec56cff6325.tar.gz | |
Merge pull request #297 from FedericoRessi/tox
Add tox.ini file
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | tox.ini | 18 |
2 files changed, 19 insertions, 0 deletions
@@ -20,3 +20,4 @@ testtools.egg-info AUTHORS ChangeLog .idea +.tox @@ -0,0 +1,18 @@ +[tox] +envlist = py35,py36,py37,py38,py39,pypy3 +minversion = 1.6 +skipsdist = True + + +[testenv] +usedevelop = True +install_command = pip install -U {opts} {packages} +setenv = VIRTUAL_ENV={envdir} + +deps = + sphinx + Twisted + .[test] + +commands = + python -m testtools.run testtools.tests.test_suite |
