-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
45 lines (39 loc) · 1.08 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
[bumpversion]
current_version = 0.16.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>(dev|rc))+(?P<build>\d+))?
serialize =
{major}.{minor}.{patch}{release}{build}
{major}.{minor}.{patch}
[bumpversion:part:release]
first_value = rc
optional_value = ga
values =
rc
ga
[bumpversion:part:build]
first_value = 1
[tool:pytest]
markers =
webapp: marks webapp integration tests (deselect with -m "not webapp")
slow: marks webapp integration tests (deselect with -m "not slow")
env =
HONEYCOMB_DEBUG=True
OCTOPRINT_NANNY_HONEYCOMB_DEBUG=True
addopts = -p no:warnings
[bumpversion:file:setup.py]
search = plugin_version = "{current_version}"
replace = plugin_version = "{new_version}"
[bumpversion:file:octoprint_nanny/__init__.py]
search = __plugin_version__ = "{current_version}"
replace = __plugin_version__ = "{new_version}"
[mypy]
python_version = 3.9
check_untyped_defs = True
ignore_missing_imports = True
warn_unused_ignores = False
warn_redundant_casts = True
warn_unused_configs = True
namespace_packages = True
exclude = octoprint_nanny/vendor