blob: 07c04b1244066a2c82a3caf2c017b47cd5117d2d (
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
37
38
39
40
41
42
43
44
45
46
|
[tox]
envlist = py27
[testenv]
commands = py.test --cov-report=html \
--cov-report=term \
--cov=leap.bitmask \
-k 'not bench' \
--pep8 {posargs}
deps =
-r{toxinidir}/pkg/requirements-testing.pip
gnupg
leap.soledad.client
-e.
setenv =
HOME=/tmp
[testenv:py27-dev]
# This environment assumes leap_common and soledad repos
# are in the parent folder.
# Use pkg/tools/checkout_leap.sh script to checkout those.
commands =
py.test -k 'not bench' {posargs}
deps =
-r{toxinidir}/pkg/requirements-testing.pip
gnupg
-e../leap_commondev
-e../soledaddev/common
-e../soledaddev/client
-e.
[testenv:py27-bench]
commands = py.test {posargs}
changedir = bench
deps =
gnupg
pytest
pytest-benchmark
# need the next 2 for graphs, but new version changed api a bit and is
# incompatible with pytest-benchmark, so we pin version <2.1
# (https://github.com/ionelmc/pytest-benchmark/issues/50).
pygal<2.1
pygaljs
setenv =
HOME=/tmp
TERM=xterm
|