forked from eddienko/owl-pipeline-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
48 lines (37 loc) · 1.14 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
[bumpversion]
current_version = 0.8.3
commit = True
tag = True
[bumpversion:file:setup.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:owl_server/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"
[bumpversion:file:charts/owl/Chart.yaml]
search = {current_version}
replace = {new_version}
[bumpversion:file:charts/owl/values.yaml]
search = tag: "{current_version}"
replace = tag: "{new_version}"
[bumpversion:file:package.json]
search = "version": "{current_version}"
replace = "version": "{new_version}"
[bumpversion:file:docker/start.sh]
search = server=={current_version}
replace = server=={new_version}
[bumpversion:file:.github/workflows/docker.yml]
search = server:{current_version}
replace = server:{new_version}
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 110
select = C,E,F,W,B,B950
exclude = docs,owl_server/external,build,.git,__pycache__
ignore = E252, E501, W503, W504, B950, B001, B008
max-complexity = 10
[aliases]
test = pytest
[tool:pytest]
addopts = --cov=owl_server --cov-report=html --cov-report=xml --cov-report=term --junitxml=report.xml