forked from py-cov-action/python-coverage-comment-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
37 lines (30 loc) · 749 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
[isort]
profile = black
skip = .venv,.tox
[flake8]
# E203: whitespace before colon on list slice: mylist[1 : 2]
# E501: line too long (black knows better)
extend-ignore = E203,E501
extend-exclude = .venv
[mypy]
no_implicit_optional = True
[mypy-xmltodict.*]
ignore_missing_imports = True
[coverage:run]
relative_files = true
[coverage:report]
exclude_lines =
\.\.\.
[tool:pytest]
addopts =
--cov-report term-missing --cov-branch --cov-report html --cov-report term
--cov=coverage_comment -vv --strict-markers -rfE
--ignore=tests/end_to_end/repo
testpaths =
tests/unit
tests/integration
tests/end_to_end
filterwarnings =
error
markers=
repo_suffix: Allows to use an additional suffix for the e2e test repo.