1
1
[tool .pytest .ini_options ]
2
2
markers = [
3
3
" incremental: Mark tests as incremental" ,
4
- " kubevirt: Mark tests as kubevirt tests" ,
4
+ " kubevirt: Mark tests as kubevirt tests"
5
5
]
6
6
addopts = [
7
7
" --pdbcls=IPython.terminal.debugger:TerminalPdb" ,
@@ -13,11 +13,15 @@ addopts = [
13
13
" --cov=ocp_resources.utils.constants" ,
14
14
" --cov=ocp_resources.utils.utils" ,
15
15
" --cov=ocp_resources.exceptions" ,
16
- " --cov=class_generator" ,
16
+ " --cov=class_generator"
17
17
]
18
18
19
19
[tool .coverage .run ]
20
- omit = [" tests/*" , " class_generator/tests/*" , " class_generator/scripts/tests/*" ]
20
+ omit = [
21
+ " tests/*" ,
22
+ " class_generator/tests/*" ,
23
+ " class_generator/scripts/tests/*"
24
+ ]
21
25
22
26
[tool .coverage .report ]
23
27
fail_under = 45
@@ -32,31 +36,31 @@ line-length = 120
32
36
fix = true
33
37
output-format = " grouped"
34
38
35
- [tool .ruff .format ]
36
- exclude = [" .git" , " .venv" , " .mypy_cache" , " .tox" , " __pycache__" ]
39
+ [tool .ruff .format ]
40
+ exclude = [ " .git" , " .venv" , " .mypy_cache" , " .tox" , " __pycache__" ]
37
41
38
42
[tool .mypy ]
39
43
no_implicit_optional = true
40
44
show_error_codes = true
41
45
warn_unused_ignores = true
42
46
43
47
[tool .hatch .build .targets .wheel ]
44
- packages = [" ocp_resources" , " class_generator" ]
48
+ packages = [ " ocp_resources" , " class_generator" ]
45
49
46
50
[tool .uv ]
47
- dev-dependencies = [" ipdb>=0.13.13" , " ipython>=8.12.3" ]
51
+ dev-dependencies = [ " ipdb>=0.13.13" , " ipython>=8.12.3" ]
48
52
49
53
[project ]
50
54
requires-python = " >=3.9"
51
55
name = " openshift-python-wrapper"
52
- version = " 11.0.24 "
56
+ version = " 11.0.25 "
53
57
description = " Wrapper around https://github.com/kubernetes-client/python"
54
58
readme = " README.md"
55
59
license = " Apache-2.0"
56
- keywords = [" Openshift" , " Kubevirt" , " Openshift Virtualization" ]
60
+ keywords = [ " Openshift" , " Kubevirt" , " Openshift Virtualization" ]
57
61
classifiers = [
58
62
" Programming Language :: Python :: 3" ,
59
- " Operating System :: OS Independent" ,
63
+ " Operating System :: OS Independent"
60
64
]
61
65
dependencies = [
62
66
" click>=8.1.7" ,
@@ -76,34 +80,34 @@ dependencies = [
76
80
" ruff>=0.6.9" ,
77
81
" testcontainers>=4.9.0" ,
78
82
" timeout-sampler>=0.0.46" ,
79
- " xmltodict>=0.13.0" ,
83
+ " xmltodict>=0.13.0"
80
84
]
81
85
82
- [[project .authors ]]
83
- name = " Meni Yakove"
84
-
86
+ [[project .authors ]]
87
+ name = " Meni Yakove"
88
+
85
89
86
- [[project .authors ]]
87
- name = " Ruth Netser"
88
-
90
+ [[project .authors ]]
91
+ name = " Ruth Netser"
92
+
89
93
90
- [[project .maintainers ]]
91
- name = " Meni Yakove"
92
-
94
+ [[project .maintainers ]]
95
+ name = " Meni Yakove"
96
+
93
97
94
- [[project .maintainers ]]
95
- name = " Ruth Netser"
96
-
98
+ [[project .maintainers ]]
99
+ name = " Ruth Netser"
100
+
97
101
98
- [project .urls ]
99
- homepage = " https://github.com/RedHatQE/openshift-python-wrapper"
100
- documentation = " https://openshift-python-wrapper.readthedocs.io/en/latest/"
101
- Download = " https://pypi.org/project/openshift-python-wrapper/"
102
- "Bug Tracker" = " https://github.com/RedHatQE/openshift-python-wrapper/issues"
102
+ [project .urls ]
103
+ homepage = " https://github.com/RedHatQE/openshift-python-wrapper"
104
+ documentation = " https://openshift-python-wrapper.readthedocs.io/en/latest/"
105
+ Download = " https://pypi.org/project/openshift-python-wrapper/"
106
+ "Bug Tracker" = " https://github.com/RedHatQE/openshift-python-wrapper/issues"
103
107
104
- [project .scripts ]
105
- class-generator = " class_generator.class_generator:main"
108
+ [project .scripts ]
109
+ class-generator = " class_generator.class_generator:main"
106
110
107
111
[build-system ]
108
- requires = [" hatchling" ]
112
+ requires = [ " hatchling" ]
109
113
build-backend = " hatchling.build"
0 commit comments