mongo-python-driver/tox.ini
Bernie Hackett a4a16ac6fc Add py34 to tox.ini
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
2014-03-10 17:10:51 -07:00

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}