blob: dda0a3459dc872a3143d6fc78285a70c97337f21 (
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
[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.client
-e.
setenv =
HOME=/tmp
[testenv:py27-dev]
# This environment assumes developer has checked out
# leap_common and soledad repos in the parent folder.
deps =
mock
pep8
pytest
pytest-pep8
pytest-cov
setuptools-trial
gnupg
-e../leap_common
-e../soledad/common
-e../soledad/client
-e.
|