summaryrefslogtreecommitdiff
path: root/testing/tox.ini
blob: f720d0a6db20c3b63a4732df33e191648769aedc (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
[tox]
envlist = py27
skipsdist=True

[testenv]
basepython = python2.7
commands = py.test -m "not benchmark" \
                   --cov-report=html \
                   --cov-report=term \
                   --cov=leap.soledad \
                   {posargs}
usedevelop = True
deps =
    coverage
    pytest
    pytest-cov
    pytest-twisted
    mock
    testscenarios
    setuptools-trial
    pdbpp
    couchdb
    requests
    service_identity
# install soledad local packages
    -e../common
    -e../client
    -e../server
setenv =
    HOME=/tmp
    TERM=xterm
install_command = pip install {opts} {packages}

[testenv:benchmark]
deps =
    {[testenv]deps}
    pytest-benchmark
commands = py.test -m benchmark {posargs}

[testenv:code-check]
changedir = ..
deps =
    pep8
    flake8
commands =
    pep8
    flake8

[testenv:parallel]
deps =
    {[testenv]deps}
    pytest-xdist
install_command = pip install {opts} {packages}
commands = py.test {posargs} -n 4