From 36d7a75449e937c25a7bc9debd3e5e47faceda7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Thu, 7 Jul 2016 16:46:18 +0300 Subject: Add pypy3 to test matrix --- .travis.yml | 1 + tox.ini | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) 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 . -- cgit v1.2.1