PyMongo has been tested against python 3.4 rc1 - rc3. We'll probably wait until 3.4 final to update trove classifiers. *NOTE* - Testing with 3.4 requires nose 1.3.1 due to https://github.com/nose-devs/nose/issues/759
25 lines
480 B
INI
25 lines
480 B
INI
# Tox (http://tox.testrun.org/) is a tool for running tests
|
|
# in multiple virtualenvs. This configuration file will run the
|
|
# test suite on all supported python versions. To use it, "pip install tox"
|
|
# and then run "tox" from this directory.
|
|
|
|
[tox]
|
|
envlist = py26, py27, py32, py33, py34, pypy
|
|
|
|
[testenv]
|
|
commands =
|
|
{envpython} setup.py --no_ext test
|
|
deps =
|
|
nose
|
|
|
|
[testenv:py26]
|
|
deps =
|
|
gevent
|
|
{[testenv]deps}
|
|
|
|
[testenv:py27]
|
|
deps =
|
|
gevent
|
|
{[testenv]deps}
|
|
|