gunicorn/tox.ini
Berker Peksag ca64a57c77 Remove pypy3 from Travis
The new version of pip won't support Python 3.2
and we will need to tweak our .travis.yml and
tox.ini in order to run tests on PyPy 3.

However, since we already removed Python 3.2
from Travis, I decided to remove PyPy 3 as well
(it still targets Python 3.2)
2016-11-23 01:44:49 +03:00

13 lines
235 B
INI

[tox]
envlist = py26, py27, py34, py35, pypy
skipsdist = True
[testenv]
usedevelop = True
commands = py.test {posargs:tests/} --assert=plain
deps =
-rrequirements_test.txt
py26: unittest2
py2{6,7},pypy: mock
py3{3,4}: aiohttp