summaryrefslogtreecommitdiff
path: root/testing/tox.ini
diff options
context:
space:
mode:
Diffstat (limited to 'testing/tox.ini')
-rw-r--r--testing/tox.ini28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/tox.ini b/testing/tox.ini
index c46c6af1..d959db0a 100644
--- a/testing/tox.ini
+++ b/testing/tox.ini
@@ -31,6 +31,34 @@ setenv =
TERM=xterm
install_command = pip install {opts} {packages}
+[testenv:py34]
+basepython = python3.4
+commands = py.test --ignore=tests/benchmarks \
+ --cov-report=html \
+ --cov-report=term \
+ --cov=leap.soledad \
+ {posargs}
+usedevelop = True
+deps =
+ coverage
+ pytest
+ pytest-cov
+ pytest-twisted
+ mock
+ testscenarios
+ setuptools-trial
+ couchdb
+ requests
+ service_identity
+# install soledad local packages
+ -e../common
+ -e../client
+ -e../server
+setenv =
+ HOME=/tmp
+ TERM=xterm
+install_command = pip3 install {opts} {packages}
+
[testenv:benchmark]
deps =
{[testenv]deps}