Testing v2.9 was unexpected and it's not as important given v2.9 mostly mostly just provided an upgrade path for v3.0, and we already test v3.x.
21 lines
358 B
INI
21 lines
358 B
INI
[tox]
|
|
envlist = {py27,py33,py34,py35,pypy,pypy3}-{mg27,mg28,mg30},flake8
|
|
|
|
[testenv]
|
|
commands =
|
|
python setup.py nosetests {posargs}
|
|
deps =
|
|
nose
|
|
mg27: PyMongo<2.8
|
|
mg28: PyMongo>=2.8,<2.9
|
|
mg30: PyMongo>=3.0
|
|
setenv =
|
|
PYTHON_EGG_CACHE = {envdir}/python-eggs
|
|
|
|
[testenv:flake8]
|
|
deps =
|
|
flake8
|
|
flake8-import-order
|
|
commands =
|
|
flake8
|