blob: 7515097649e0dac41a14bdd5c64286264c1d72d5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
[metadata]
license_file = LICENSE
[tool:pytest]
addopts = --cov=yarl -v
filterwarnings = error
norecursedirs = dist docs build .tox .eggs venv virtualenv .git
minversion = 3.8.2
testpaths = tests/
junit_suite_name = yarl_test_suite
[flake8]
ignore = E203,E301,E302,E704,W503,W504,F811
max-line-length = 88
[mypy]
[mypy-idna]
ignore_missing_imports = true
[mypy-pytest]
ignore_missing_imports = true
[egg_info]
tag_build =
tag_date = 0
|