File: setup.cfg

package info (click to toggle)
apt-listchanges 4.8%2Bnmu1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,340 kB
  • sloc: python: 3,477; xml: 693; makefile: 167; sh: 71; perl: 61
file content (19 lines) | stat: -rw-r--r-- 467 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
[flake8]
extend-ignore =
  # Sometimes we use multiple #'s to make comments stand out, and that's fine
  E266
per-file-ignores =
  # There are data in this file that are made readable with extra whitespace
  apt_listchanges/debconf_helper.py: E203, E221, E501
  # Ditto
  apt_listchanges/DebianFiles.py: E203
exclude = .pybuild debian/apt-listchanges

[tool:pytest]
addopts = --cov=apt_listchanges

[coverage:run]
branch = True

[coverage:report]
show_missing = True