summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 5d0dfa1122903e5df002d2732529e3d376e4bee1 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tox]
envlist = py27
skipsdist=True

[testenv]
commands = py.test --cov-report=html \
                   --cov-report=term \
		   --cov=leap.bitmask \
		   -k 'not bench' \
		   --pep8 {posargs}
usedevelop = True
deps =
    -r{toxinidir}/pkg/requirements-testing.pip
    gnupg
    leap.soledad.client
setenv =
    HOME=/tmp

[testenv:py27-dev]
# This is the environment that the Gitlab CI runs normally
commands =
    py.test -k 'not bench' --pep8 {posargs}
deps =
    -r{toxinidir}/pkg/requirements-testing.pip
    gnupg
    -egit+https://0xacab.org/leap/leap_pycommon@master#egg=leap.common
    -egit+https://0xacab.org/leap/soledad@develop#egg=leap.soledad.common&subdirectory=common
    -egit+https://0xacab.org/leap/soledad@develop#egg=leap.soledad.client&subdirectory=client
setenv =
    HOME=/tmp
    PATH=/usr/bin/:/bin/

[testenv:py27-dev-local]
# This environment assumes leap_common and soledad repos 
# are checked out locally in the parent folder.
# Use pkg/tools/checkout_leap.sh script to do that.
commands =
    py.test -k 'not bench' --pep8 -x {posargs}
deps =
    -r{toxinidir}/pkg/requirements-testing.pip
    gnupg
    -e../leap_commondev
    -e../soledaddev/common
    -e../soledaddev/client
setenv =
    HOME=/tmp
    PATH=/usr/bin/:/bin/
  
  
[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