-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
89 lines (72 loc) · 1.36 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[bumpversion]
current_version = 0.0.2
commit = True
tag = True
[bdist_wheel]
universal = 1
[build_sphinx]
source-dir = docs/source
build-dir = docs/build
all_files = 1
[tool:pytest]
addopts =
-ra
--strict
testpaths = tests
norecusedirs =
.git
.tox
.env
dist
build
migrations
tests/sql-tests
python_files =
test_*.py
[coverage:run]
omit =
pytest_pgtap/__init__.py
tests/
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self\.debug
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
logging
logger
[mypy]
ignore_missing_imports = True
[bumpversion:file:setup.py]
search = version='{current_version}'
replace = version='{new_version}'
[bumpversion:file:README.md]
search = v{current_version}.
replace = v{new_version}.
[bumpversion:file:docs/source/conf.py]
search = version = release = '{current_version}'
replace = version = release = '{new_version}'
[bumpversion:file:pytest_pgtap/__init__.py]
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude =
[flake8]
max-line-length = 88
extend-ignore = E203
exclude =
docs
client
[isort]
src_paths=pytest_pgtap,tests
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88