File: setup.cfg

package info (click to toggle)
python-aiostream 0.5.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 368 kB
  • sloc: python: 2,445; makefile: 5
file content (22 lines) | stat: -rw-r--r-- 388 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[tool:pytest]
addopts = tests --strict-markers --cov aiostream --cov-report html --cov-report term

[coverage:report]
exclude_lines =
    pragma: no cover
    if TYPE_CHECKING:
    ...

[aliases]
test = pytest

[flake8]
max-line-length = 88
ignore = F401, F403, E731, W503, E501, E203

[mypy]
strict = True
packages = aiostream, examples

[mypy-aiostream.test_utils]
ignore_errors = True