-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
46 lines (42 loc) · 888 Bytes
/
setup.cfg
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[metadata]
description_file = README.md
license_file = LICENSE
[test]
tests = True
[aliases]
test=pytest
[tool:pytest]
addopts = --verbose --cov=construe --flakes --spec --cov-report=xml --cov-report term
python_files = tests/*
flakes-ignore =
__init__.py UnusedImport
__init__.py ImportStarUsed
test_*.py ImportStarUsed
test_*.py ImportStarUsage
conftest.py UnusedVariable
examples/* ALL
tests/checks.py ALL
docs/_build ALL
spec_header_format = {class_name} ({path})
filterwarnings =
once::UserWarning
once::DeprecationWarning
once::PendingDeprecationWarning
ignore::FutureWarning
[flake8]
max-line-length = 88
extend-ignore = E501,E266
per-file-ignores =
__init__.py:F401,F403
test_*.py:F405,F403
conftest.py:F841
exclude =
.git
__pycache__
build
dist
tmp
theme
fixtures
.github
.vscode