testit-adapter-robotframework 2.8.3__tar.gz → 3.0.1__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.
Potentially problematic release.
This version of testit-adapter-robotframework might be problematic. Click here for more details.
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/PKG-INFO +2 -2
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/setup.py +2 -2
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework/listeners.py +1 -1
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework/models.py +1 -1
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework.egg-info/PKG-INFO +2 -2
- testit_adapter_robotframework-3.0.1/src/testit_adapter_robotframework.egg-info/requires.txt +3 -0
- testit-adapter-robotframework-2.8.3/src/testit_adapter_robotframework.egg-info/requires.txt +0 -3
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/README.md +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/setup.cfg +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework/TMSLibrary.py +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework/__init__.py +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework/utils.py +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework.egg-info/SOURCES.txt +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework.egg-info/dependency_links.txt +0 -0
- {testit-adapter-robotframework-2.8.3 → testit_adapter_robotframework-3.0.1}/src/testit_adapter_robotframework.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-robotframework
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.1
|
|
4
4
|
Summary: Robot Framework 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: robotframework
|
|
20
|
-
Requires-Dist: testit-python-commons==
|
|
20
|
+
Requires-Dist: testit-python-commons==3.0.1
|
|
21
21
|
|
|
22
22
|
# Test IT TMS adapter for Robot Framework
|
|
23
23
|

|
|
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='testit-adapter-robotframework',
|
|
5
|
-
version='
|
|
5
|
+
version='3.0.1',
|
|
6
6
|
description='Robot Framework adapter for Test IT',
|
|
7
7
|
long_description=open('README.md', "r").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -23,5 +23,5 @@ setup(
|
|
|
23
23
|
py_modules=['testit_adapter_robotframework'],
|
|
24
24
|
packages=find_packages(where='src'),
|
|
25
25
|
package_dir={'': 'src'},
|
|
26
|
-
install_requires=['attrs', 'robotframework', 'testit-python-commons==
|
|
26
|
+
install_requires=['attrs', 'robotframework', 'testit-python-commons==3.0.1']
|
|
27
27
|
)
|
|
@@ -98,7 +98,7 @@ class ExcludeTests(SuiteVisitor):
|
|
|
98
98
|
|
|
99
99
|
def _is_included(self, test):
|
|
100
100
|
tags = test.tags
|
|
101
|
-
external_id = get_hash(test.longname
|
|
101
|
+
external_id = get_hash(test.longname)
|
|
102
102
|
for tag in tags:
|
|
103
103
|
if str(tag).lower().startswith('testit.externalid'):
|
|
104
104
|
external_id = tag.split(':', 1)[-1].strip()
|
|
@@ -147,7 +147,7 @@ class Autotest(Default):
|
|
|
147
147
|
else:
|
|
148
148
|
logger.error(f"[TestIt] Unknown attribute: {attr}")
|
|
149
149
|
if not self.externalID:
|
|
150
|
-
self.externalID = get_hash(attrs['longname']
|
|
150
|
+
self.externalID = get_hash(attrs['longname'])
|
|
151
151
|
|
|
152
152
|
def add_step(self, step_type, title, description, parameters):
|
|
153
153
|
if len(self.step_depth) == 0:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-robotframework
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.1
|
|
4
4
|
Summary: Robot Framework 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: robotframework
|
|
20
|
-
Requires-Dist: testit-python-commons==
|
|
20
|
+
Requires-Dist: testit-python-commons==3.0.1
|
|
21
21
|
|
|
22
22
|
# Test IT TMS adapter for Robot Framework
|
|
23
23
|

|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|