testit-adapter-nose 2.8.3__tar.gz → 3.0.0__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-2.8.3 → testit_adapter_nose-3.0.0}/PKG-INFO +2 -2
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/setup.py +2 -2
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose/utils.py +1 -1
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/PKG-INFO +2 -2
- testit_adapter_nose-3.0.0/src/testit_adapter_nose.egg-info/requires.txt +3 -0
- testit-adapter-nose-2.8.3/src/testit_adapter_nose.egg-info/requires.txt +0 -3
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/README.md +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/setup.cfg +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose/__init__.py +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose/listener.py +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose/plugin.py +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/SOURCES.txt +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/dependency_links.txt +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/entry_points.txt +0 -0
- {testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-nose
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0
|
|
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==
|
|
20
|
+
Requires-Dist: testit-python-commons==3.0.0
|
|
21
21
|
|
|
22
22
|
# Test IT TMS adapter for Nose
|
|
23
23
|
|
|
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='testit-adapter-nose',
|
|
5
|
-
version='
|
|
5
|
+
version='3.0.0',
|
|
6
6
|
description='Nose adapter for Test IT',
|
|
7
7
|
long_description=open('README.md', "r").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -23,7 +23,7 @@ setup(
|
|
|
23
23
|
py_modules=['testit_adapter_nose'],
|
|
24
24
|
packages=find_packages(where='src'),
|
|
25
25
|
package_dir={'': 'src'},
|
|
26
|
-
install_requires=['attrs', 'nose2', 'testit-python-commons==
|
|
26
|
+
install_requires=['attrs', 'nose2', 'testit-python-commons==3.0.0'],
|
|
27
27
|
entry_points={
|
|
28
28
|
'nose.plugins.0.10': [
|
|
29
29
|
'testit_adapter_nose = testit_adapter_nose.plugin:TmsPlugin',
|
|
@@ -117,7 +117,7 @@ def __get_external_id_from(item):
|
|
|
117
117
|
external_id = __search_attribute(item, 'test_external_id')
|
|
118
118
|
|
|
119
119
|
if not external_id:
|
|
120
|
-
return get_hash(item._testFunc.__name__)
|
|
120
|
+
return get_hash(item._testFunc.__qualname__ + item._testFunc.__name__)
|
|
121
121
|
|
|
122
122
|
return collect_parameters_in_string_attribute(external_id, get_all_parameters(item))
|
|
123
123
|
|
{testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-nose
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0
|
|
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==
|
|
20
|
+
Requires-Dist: testit-python-commons==3.0.0
|
|
21
21
|
|
|
22
22
|
# Test IT TMS adapter for Nose
|
|
23
23
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testit-adapter-nose-2.8.3 → testit_adapter_nose-3.0.0}/src/testit_adapter_nose.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|