Coverage for pymend\const.py: 100%
6 statements
« prev ^ index » next coverage.py v7.3.2, created at 2024-04-20 21:33 +0200
« prev ^ index » next coverage.py v7.3.2, created at 2024-04-20 21:33 +0200
1"""Constant value used across pymend."""
3import re
5DEFAULT_EXCLUDES = re.compile(
6 r"/(\.direnv|\.eggs|\.git|\.hg|\.ipynb_checkpoints|\.mypy_cache|\.nox|\.pytest_cache|\.ruff_cache|\.tox|\.svn|\.venv|\.vscode|__pypackages__|_build|buck-out|build|dist|venv)/" # pylint: disable=line-too-long
7)
8DEFAULT_DESCRIPTION = "_description_"
9DEFAULT_TYPE = "_type_"
10DEFAULT_SUMMARY = "_summary_."
11DEFAULT_EXCEPTION = "__UnknownError__"