summaryrefslogtreecommitdiff
path: root/tox.ini
blob: 57e57bc635ec9340e839643be7fd9f0ecc0553dc (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
[tox]
envlist = py27,py37,pre-commit

[testenv]
usedevelop=True
whitelist_externals=mkdir
passenv =
    LD_LIBRARY_PATH
    DOCKER_HOST
    DOCKER_CERT_PATH
    DOCKER_TLS_VERIFY
    DOCKER_VERSION
    SWARM_SKIP_*
    SWARM_ASSUME_MULTINODE
setenv =
    HOME=/tmp
deps =
    -rrequirements.txt
    -rrequirements-dev.txt
commands =
    mkdir -p .coverage-binfiles
    py.test -v \
        --cov=compose \
        --cov-report html \
        --cov-report term \
        --cov-config=tox.ini \
        {posargs:tests}

[testenv:pre-commit]
skip_install = True
deps =
    pre-commit
commands =
    pre-commit install
    pre-commit run --all-files

# Coverage configuration
[run]
branch = True
data_file = .coverage-binfiles/.coverage

[report]
show_missing = true

[html]
directory = coverage-html
# end coverage configuration

[flake8]
max-line-length = 105
# Set this high for now
max-complexity = 11
exclude = compose/packages

[pytest]
addopts = --tb=short -rxs