testit-adapter-nose 3.5.2__tar.gz → 3.5.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/PKG-INFO +2 -2
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/setup.py +1 -1
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose/utils.py +4 -4
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/PKG-INFO +2 -2
- testit_adapter_nose-3.5.3/src/testit_adapter_nose.egg-info/requires.txt +3 -0
- testit_adapter_nose-3.5.2/src/testit_adapter_nose.egg-info/requires.txt +0 -3
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/README.md +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/setup.cfg +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose/__init__.py +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose/listener.py +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose/plugin.py +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/SOURCES.txt +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/dependency_links.txt +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/entry_points.txt +0 -0
- {testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testit-adapter-nose
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.3
|
|
4
4
|
Summary: Nose adapter for Test IT
|
|
5
5
|
Home-page: https://github.com/testit-tms/adapters-python/
|
|
6
6
|
Author: Integration team
|
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
Requires-Dist: attrs
|
|
19
19
|
Requires-Dist: nose2
|
|
20
|
-
Requires-Dist: testit-python-commons==3.5.
|
|
20
|
+
Requires-Dist: testit-python-commons==3.5.3
|
|
21
21
|
Dynamic: author
|
|
22
22
|
Dynamic: author-email
|
|
23
23
|
Dynamic: classifier
|
|
@@ -143,7 +143,7 @@ def __get_class_name_from(item, function):
|
|
|
143
143
|
i = function.__qualname__.find('.')
|
|
144
144
|
|
|
145
145
|
if i != -1:
|
|
146
|
-
return
|
|
146
|
+
return function.__qualname__[:i]
|
|
147
147
|
|
|
148
148
|
return None
|
|
149
149
|
|
|
@@ -264,9 +264,9 @@ def __join_nose_test_node(test_node_parts: typing.List[str]):
|
|
|
264
264
|
return ".".join(test_node_parts)
|
|
265
265
|
|
|
266
266
|
|
|
267
|
-
def __search_attribute(
|
|
268
|
-
if hasattr(
|
|
269
|
-
return getattr(
|
|
267
|
+
def __search_attribute(function, attribute):
|
|
268
|
+
if hasattr(function, attribute):
|
|
269
|
+
return getattr(function, attribute)
|
|
270
270
|
|
|
271
271
|
return
|
|
272
272
|
|
{testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testit-adapter-nose
|
|
3
|
-
Version: 3.5.
|
|
3
|
+
Version: 3.5.3
|
|
4
4
|
Summary: Nose adapter for Test IT
|
|
5
5
|
Home-page: https://github.com/testit-tms/adapters-python/
|
|
6
6
|
Author: Integration team
|
|
@@ -17,7 +17,7 @@ Classifier: Programming Language :: Python :: 3.12
|
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
Requires-Dist: attrs
|
|
19
19
|
Requires-Dist: nose2
|
|
20
|
-
Requires-Dist: testit-python-commons==3.5.
|
|
20
|
+
Requires-Dist: testit-python-commons==3.5.3
|
|
21
21
|
Dynamic: author
|
|
22
22
|
Dynamic: author-email
|
|
23
23
|
Dynamic: classifier
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testit_adapter_nose-3.5.2 → testit_adapter_nose-3.5.3}/src/testit_adapter_nose.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|