blob: 5f401a35935186db4208dde3a2fa466139e54a9d (
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
|
[tox]
envlist = py27
[testenv]
commands = py.test {posargs}
changedir = tests
deps =
pytest
pytest-flake8
pytest-pep8
pytest-twisted
mock
testscenarios
setuptools-trial
pep8
pdbpp
couchdb
requests
# install soledad local packages
-e../common
-e../client
-e../server
setenv =
HOME=/tmp
TERM=xterm
PIP_DOWNLOAD_CACHE=/var/cache/pip
install_command = pip install {opts} {packages}
|