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 = 60
@@ -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" , " fake_kubernetes_client" ]
48
+ packages = [ " ocp_resources" , " class_generator" , " fake_kubernetes_client" ]
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 = " 4.19.0 "
56
+ version = " 4.19.1 "
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
" cloup>=3.0.5" ,
@@ -72,40 +76,37 @@ dependencies = [
72
76
" rich>=13.9.2" ,
73
77
" ruff>=0.6.9" ,
74
78
" timeout-sampler>=0.0.46" ,
75
- " xmltodict>=0.13.0" ,
79
+ " xmltodict>=0.13.0"
76
80
]
77
81
78
- [[project .authors ]]
79
- name = " Meni Yakove"
80
-
82
+ [[project .authors ]]
83
+ name = " Meni Yakove"
84
+
81
85
82
- [[project .authors ]]
83
- name = " Ruth Netser"
84
-
86
+ [[project .authors ]]
87
+ name = " Ruth Netser"
88
+
85
89
86
- [[project .maintainers ]]
87
- name = " Meni Yakove"
88
-
90
+ [[project .maintainers ]]
91
+ name = " Meni Yakove"
92
+
89
93
90
- [[project .maintainers ]]
91
- name = " Ruth Netser"
92
-
94
+ [[project .maintainers ]]
95
+ name = " Ruth Netser"
96
+
93
97
94
- [project .urls ]
95
- homepage = " https://github.com/RedHatQE/openshift-python-wrapper"
96
- documentation = " https://openshift-python-wrapper.readthedocs.io/en/latest/"
97
- Download = " https://pypi.org/project/openshift-python-wrapper/"
98
- "Bug Tracker" = " https://github.com/RedHatQE/openshift-python-wrapper/issues"
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"
99
103
100
- [project .scripts ]
101
- class-generator = " class_generator.class_generator:main"
104
+ [project .scripts ]
105
+ class-generator = " class_generator.class_generator:main"
102
106
103
107
[build-system ]
104
- requires = [" hatchling" ]
108
+ requires = [ " hatchling" ]
105
109
build-backend = " hatchling.build"
106
110
107
111
[dependency-groups ]
108
- tests = [
109
- " pytest>=8.3.5" ,
110
- " pytest-cov>=6.1.1" ,
111
- ]
112
+ tests = [ " pytest>=8.3.5" , " pytest-cov>=6.1.1" ]
0 commit comments