diff options
| author | Federico Ressi <fressi@redhat.com> | 2020-07-10 17:12:38 +0200 |
|---|---|---|
| committer | Federico Ressi <fressi@redhat.com> | 2020-07-10 17:12:38 +0200 |
| commit | 9976c19baae89a079efa35ca88ff9a10ada710d4 (patch) | |
| tree | 12dc39cb4c328b88a7507338078e353f28659fbd | |
| parent | bb6bc7aede0fc032f1db85b9cc033826d321142c (diff) | |
| download | testtools-9976c19baae89a079efa35ca88ff9a10ada710d4.tar.gz | |
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,pypy,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 |
