diff options
Diffstat (limited to 'testing/tox.ini')
-rw-r--r-- | testing/tox.ini | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/tox.ini b/testing/tox.ini new file mode 100644 index 00000000..3663eef3 --- /dev/null +++ b/testing/tox.ini @@ -0,0 +1,23 @@ +[tox] +envlist = py27 + +[testenv] +commands = py.test --pep8 {posargs} +changedir = tests +deps = + pytest + pytest-flake8 + pytest-pep8 + mock + testscenarios + setuptools-trial + pep8 + pdbpp + couchdb +# install soledad local packages + -e../common + -e../client + -e../server +setenv = + HOME=/tmp +install_command = pip install {opts} {packages} |