blob: 0304ccb33cd716b1e0f3ec55cc4bae2ae0bdaa05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
[tox]
envlist = py24,py25,py26,py27,py32,py33,jython,pypy18
[testenv]
deps=nose
sqlalchemy
pymongo
commands=nosetests []
[testenv:py24]
deps=nose
sqlalchemy
pymongo
pysqlite
[testenv:py32]
deps=nose
sqlalchemy
pymongo3
[testenv:py33]
basepython=python3.3
deps=nose
sqlalchemy
pymongo3
# Jython does not have SQLite, so don't download SQLAlchemy.
# Also, because of a Jython bug (http://bugs.jython.org/issue1701), the MongoDB
# job store does not work correctly, so don't install Pymongo either.
[testenv:jython]
deps=nose
[testenv:pypy18]
basepython=pypy1.8
|