blob: 83793cc787bfbd354d5a8831399718995488e5e1 (
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
35
36
|
[tox]
envlist = py27,pep8
[testenv]
commands = py.test {posargs}
changedir = tests
deps =
pytest
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
install_command = pip install {opts} {packages}
[testenv:pep8]
changedir = ..
deps = pep8
commands = pep8 {posargs} client server common
[testenv:parallel]
deps =
{[testenv]deps}
pytest-xdist
install_command = pip install {opts} {packages}
commands = py.test {posargs} -n 4
|