File: setup.cfg

package info (click to toggle)
python-apischema 0.18.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,636 kB
  • sloc: python: 15,281; makefile: 3; sh: 2
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):