]> jfr.im git - yt-dlp.git/blame_incremental - setup.cfg
[ie/youtube] Fix comments extraction (#9775)
[yt-dlp.git] / setup.cfg
... / ...
CommitLineData
1[flake8]
2exclude = build,venv,.tox,.git,.pytest_cache
3ignore = E402,E501,E731,E741,W503
4max_line_length = 120
5per_file_ignores =
6 devscripts/lazy_load_template.py: F401
7
8
9[autoflake]
10ignore-init-module-imports = true
11ignore-pass-after-docstring = true
12remove-all-unused-imports = true
13remove-duplicate-keys = true
14remove-unused-variables = true
15
16
17[tool:pytest]
18addopts = -ra -v --strict-markers
19markers =
20 download
21
22
23[tox:tox]
24skipsdist = true
25envlist = py{38,39,310,311,312},pypy{38,39,310}
26skip_missing_interpreters = true
27
28[testenv] # tox
29deps =
30 pytest
31commands = pytest {posargs:"-m not download"}
32passenv = HOME # For test_compat_expanduser
33setenv =
34 # PYTHONWARNINGS = error # Catches PIP's warnings too
35
36
37[isort]
38py_version = 38
39multi_line_output = VERTICAL_HANGING_INDENT
40line_length = 80
41reverse_relative = true
42ensure_newline_before_comments = true
43include_trailing_comma = true
44known_first_party =
45 test