diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | tox.ini | 15 |
2 files changed, 16 insertions, 0 deletions
@@ -2,3 +2,4 @@ build __pycache__ *.py[c,o] dist +/.tox @@ -0,0 +1,15 @@ +[tox] +envlist = py27,py35,py36,py37,pyflakes +skip_missing_interpreters = True + +[testenv] +commands = + python setup.py test +sitepackages = True + +[testenv:pyflakes] +deps = + pyflakes +commands = + pyflakes pym +sitepackages = False |
