diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-01 00:09:32 -0400 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2016-09-01 00:52:28 -0400 |
commit | 2a46b146135aa5694eb9de288c24037051268fdf (patch) | |
tree | 06708a1234c3083372a4a75f29cfd57bf4637a53 /tox.ini | |
parent | 6cd459bb1474488bd5f81dbe73a70b19e62ab0c3 (diff) |
[tests] tox configuration
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 26 |
1 files changed, 26 insertions, 0 deletions
@@ -0,0 +1,26 @@ +[tox] +envlist = py27 + +[testenv] +commands = py.test --cov-report=html \ + --cov-report=term \ + --cov=leap.bitmask \ + --pep8 {posargs} +deps = + mock + pep8 + pytest + pytest-pep8 + pytest-cov + setuptools-trial + gnupg + leap.soledad.common + + # move this to another env! + #leap.soledad.client + -e../soledad/client + -e. +setenv = + HOME=/tmp + + |