File: setup.cfg

package info (click to toggle)
python-async-lru 1.0.3-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 192 kB
  • sloc: python: 893; makefile: 16
file content (24 lines) | stat: -rw-r--r-- 442 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
23
24
[flake8]
exclude = .git,.env,__pycache__,.eggs
max-line-length = 88
ignore = N801,N802,N803,E252,W503,E133,E203

[coverage:run]
branch = True
omit = site-packages

[isort]
line_length=88
include_trailing_comma=True
multi_line_output=3
force_grid_wrap=0
combine_as_imports=True
lines_after_imports=2

known_first_party=async_lru

[tool:pytest]
addopts= -s --keep-duplicates --verbose
testpaths = tests/
junit_family=xunit2
asyncio_mode = auto