mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
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)
13 lines
235 B
INI
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
|