blob: 4c4449939d20d0f52cccb42bb35224597e88d778 (
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
65
66
67
68
69
70
|
[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
# we want to pick latest in soledad master and pycommon master
commands =
# XXX workaround: use a bundled version of pysqlcipher to ensure HAVE_USLEEP is
# set and we don't have problems with concurrent db access.
pip uninstall -y pysqlcipher
pip install --install-option="--bundled" pysqlcipher
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@master#egg=leap.soledad.common&subdirectory=common
-egit+https://0xacab.org/leap/soledad@master#egg=leap.soledad.client&subdirectory=client
setenv =
HOME=/tmp
CPPFLAGS='-I/usr/local/include/sqlcipher'
LDFLAGS='-L/usr/local/lib'
[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
|