summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Wójcik <wojcikstefan@gmail.com>2016-07-08 16:47:45 -0700
committerGitHub <noreply@github.com>2016-07-08 16:47:45 -0700
commit93db59f12abfbeeafe518028b0d9570abb137c8d (patch)
treed946ecef4aa78de2e8d752b403d589a5a0ad5120
parentef1cc78b1798f71e48ccd0793f40c6d181e72e74 (diff)
parent36d7a75449e937c25a7bc9debd3e5e47faceda7f (diff)
downloadpython-mimeparse-93db59f12abfbeeafe518028b0d9570abb137c8d.tar.gz
Merge pull request #23 from scop/pypy3
Add pypy3 to test matrix
-rw-r--r--.travis.yml1
-rw-r--r--tox.ini5
2 files changed, 5 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index dde1451..20935de 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -7,6 +7,7 @@ env:
- TOXENV=py27
- TOXENV=py34
- TOXENV=pypy
+ - TOXENV=pypy3
- TOXENV=pep8,pyflakes
# https://github.com/travis-ci/travis-ci/issues/4794
diff --git a/tox.ini b/tox.ini
index 38fb075..62c1338 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py35,py34,py32,py27,pypy,pep8,pyflakes
+envlist = py35,py34,py32,py27,pypy,pypy3,pep8,pyflakes
[testenv]
commands = ./mimeparse_test.py
@@ -19,6 +19,9 @@ basepython = python2.7
[testenv:pypy]
basepython = pypy
+[testenv:pypy3]
+basepython = pypy3
+
[testenv:pep8]
deps = pep8
commands = pep8 --statistics --show-source --ignore=E501 --exclude=.venv,.tox,*egg .