-
Notifications
You must be signed in to change notification settings - Fork 190
Expand file tree
/
Copy pathsetup.cfg
More file actions
32 lines (23 loc) · 790 Bytes
/
setup.cfg
File metadata and controls
32 lines (23 loc) · 790 Bytes
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
28
29
30
31
32
[egg_info]
tag_build = .dev
[flake8]
ignore = E121,E125,E129,E241,W504
exclude = lib, docs, bin
[pydocstyle]
ignore = D203,D213,D413,D406,D407
[tool:pytest]
python_files = tests.py test_*.py
python_classes = *Tests
python_functions = test_*
testpaths = rbtools
log_cli_level = DEBUG
required_plugins =
pytest-env
# Ignore certain warnings until we can address them (through fixes or
# upgrades)
filterwarnings =
# Ignore deprecations in Python 3.12
ignore:Attribute s is deprecated and will be removed in Python 3.14; use value instead
ignore:TestResult has no addDuration method
ignore:ast.NameConstant is deprecated and will be removed in Python 3.14; use ast.Constant instead
ignore:ast.Str is deprecated and will be removed in Python 3.14; use ast.Constant instead