summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: 8318e94045072cc408f827a5d094bcdb092f62d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[wheel]
universal = true

[pytest]
norecursedirs = build docs/_build *.egg .tox *.venv
addopts =
    --verbose
    --tb=short
    --capture=no
    # show extra test summary info as specified by chars (f)ailed, (E)error,
    # (s)skipped, (x)failed, (X)passed.
    -rfEsxX
    --cov=pymemcache --cov-report=xml --cov-report=term-missing
    -m unit

markers =
    unit
    integration

[flake8]
exclude = pymemcache/test/
show-source = True