File: setup.cfg

package info (click to toggle)
python-apischema 0.18.3-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,608 kB
  • sloc: python: 15,266; sh: 7; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 405 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
23
[flake8]
max-line-length = 88
ignore = E203, E302, E501, W503, E731, E741, F402

[isort]
profile = black

[tool:pytest]
asyncio_mode = auto

[coverage:report]
;fail_under = 100
precision = 2
exclude_lines =
    py36
    pragma: no cover
    ^\s*\.\.\.$
    raise NotImplementedError
    except ImportError
    if TYPE_CHECKING
    stop_signature_abuse()
    if sys.version_info
    def __getattr__(name):