2019-07-07 22:39:19 +00:00
|
|
|
[flake8]
|
|
|
|
max-line-length = 9999
|
|
|
|
import-order-style = pep8
|
2024-06-10 15:33:51 +00:00
|
|
|
exclude = .git,.vscode
|
2019-10-04 00:17:32 +00:00
|
|
|
extend-ignore =
|
|
|
|
I202
|
2024-06-10 15:33:51 +00:00
|
|
|
E203
|
2019-10-04 00:17:32 +00:00
|
|
|
per-file-ignores =
|
|
|
|
*/__init__.py: F401
|
2021-10-19 13:34:32 +00:00
|
|
|
tests/test_imports.py: F401
|
2020-08-21 13:09:34 +00:00
|
|
|
|
|
|
|
[pytest]
|
|
|
|
minversion = 4.6
|
|
|
|
testpaths =
|
|
|
|
tests
|
|
|
|
|
|
|
|
[coverage:run]
|
2021-10-12 16:08:32 +00:00
|
|
|
source = .
|
2021-06-01 19:39:51 +00:00
|
|
|
omit =
|
|
|
|
tests/*
|
|
|
|
build.py
|
2020-10-05 04:27:07 +00:00
|
|
|
branch = True
|
|
|
|
command_line = -m pytest --junitxml=test.xml
|