File: setup.cfg

package info (click to toggle)
python-pymemcache 1.3.2-2~bpo8%2B1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-backports
  • size: 284 kB
  • sloc: python: 2,244; makefile: 34
file content (22 lines) | stat: -rw-r--r-- 427 bytes parent folder | download | duplicates (2)
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
    benchmark

[flake8]
show-source = True