pyvers/setup.cfg
2022-08-09 09:51:15 -05:00

53 lines
968 B
INI

[bumpversion]
current_version = 0.0.1
commit = True
tag = True
[bumpversion:file:setup.py]
[bumpversion:file:pyvers/__init__.py]
[bumpversion:file:pyvers/cli.py]
[bumpversion:file:pyvers/commit_parser.py]
[pydocstyle]
inherit = false
match = (?!punch_).*\.py
[tool:pytest]
addopts = -ra -q --cov=pyvers --cov-fail-under=100 --cov-report=term-missing
testpaths =
tests
[coverage:report]
omit =
pyvers/cli.py
pyvers/get_pipelines.py
pyvers/sample_data.py
pyvers/logger.py
exclude_lines =
if __name__ == .__main__.:
if TYPE_CHECKING:
[mypy]
python_version = 3.8
warn_return_any = True
warn_unused_configs = True
disallow_untyped_defs = True
disallow_untyped_calls = True
allow_untyped_globals = False
[mypy-tests.*]
ignore_errors = True
[mypy-setuptools]
ignore_missing_imports = True
[mypy-rich.*]
ignore_missing_imports = True
[flake8]
ignore = E203, E266, E501, W503, E231, F541
max-line-length = 88
select = B,C,E,F,W,T4,B9