summaryrefslogtreecommitdiff
path: root/tox.ini
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2018-08-13 07:23:49 +0300
committerDB Tsai <dbtsai@dbtsai.com>2018-08-12 21:23:49 -0700
commit30a7cf100f4fe1dcbf03a06a760607fe5fd3c73d (patch)
treea368adb3dd5941b84bd834b3a537472add908dc9 /tox.ini
parent9a758d1a68ebdb71111dc244acd0a4be42e6bdc8 (diff)
downloadpython-mimeparse-30a7cf100f4fe1dcbf03a06a760607fe5fd3c73d.tar.gz
Test updates and fixes (#33)
* Add Python 3.6 and 3.7 to test matrix * Flake8 whitespace fixes * Use pypy3.5-5.8.0 on Travis pypy3 in a python 2.7 env is no longer there.
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini8
1 files changed, 7 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index efdf5ff..97c4794 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,16 @@
[tox]
-envlist = py35,py34,py32,py27,pypy,pypy3,flake8
+envlist = py37,py36,py35,py34,py32,py27,pypy,pypy3,flake8
[testenv]
commands = python --version
./mimeparse_test.py
+[testenv:py37]
+basepython = python3.7
+
+[testenv:py36]
+basepython = python3.6
+
[testenv:py35]
basepython = python3.5