summaryrefslogtreecommitdiff
path: root/setup.cfg
blob: dab5e386bc98d41e9c163ad436df0ce3dd5ca580 (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
[bdist_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
    benchmark

[flake8]
show-source = True

[bumpversion]
current_version = 1.3.5
commit = False
tag = True

[bumpversion:file:pymemcache/__init__.py]