blob: 489ad214d25ee4a9d9fbc3bbb9df5e3b9d630027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
[tox]
envlist = py27
recreate = True
[testenv]
commands = python -m nose2 -v
#sitepackages = True
usedevelop = True
# This environment requires you to set up PostgreSQL and create a .cfg file
# somewhere outside of the source tree.
[testenv:pg]
basepython = python2.7
commands = python -m nose2 -v
usedevelop = True
deps = psycopg2
|