diff options
Diffstat (limited to 'circuitpython/tools/python-semver/tox.ini')
-rw-r--r-- | circuitpython/tools/python-semver/tox.ini | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/circuitpython/tools/python-semver/tox.ini b/circuitpython/tools/python-semver/tox.ini new file mode 100644 index 0000000..c909157 --- /dev/null +++ b/circuitpython/tools/python-semver/tox.ini @@ -0,0 +1,16 @@ +[tox] +envlist = + flake8 + py{26,27,32,33,34,35,36} + pypy + +[testenv] +commands = py.test -q tests.py +deps = pytest +setenv = + PIP_DISABLE_PIP_VERSION_CHECK = 1 + +[testenv:flake8] +basepython = python3.4 +deps = flake8 +commands = flake8 |