testit-adapter-robotframework 3.2.2__tar.gz → 3.2.4__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-3.2.2 → testit_adapter_robotframework-3.2.4}/PKG-INFO +2 -2
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/setup.py +2 -2
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework/TMSLibrary.py +1 -1
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework/models.py +2 -2
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework.egg-info/PKG-INFO +2 -2
- testit_adapter_robotframework-3.2.4/src/testit_adapter_robotframework.egg-info/requires.txt +3 -0
- testit_adapter_robotframework-3.2.2/src/testit_adapter_robotframework.egg-info/requires.txt +0 -3
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/README.md +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/setup.cfg +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework/__init__.py +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework/listeners.py +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework/utils.py +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework.egg-info/SOURCES.txt +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/src/testit_adapter_robotframework.egg-info/dependency_links.txt +0 -0
- {testit_adapter_robotframework-3.2.2 → testit_adapter_robotframework-3.2.4}/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.2.
|
|
3
|
+
Version: 3.2.4
|
|
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==3.2.
|
|
20
|
+
Requires-Dist: testit-python-commons==3.2.4
|
|
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='3.2.
|
|
5
|
+
version='3.2.4',
|
|
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==3.2.
|
|
26
|
+
install_requires=['attrs', 'robotframework', 'testit-python-commons==3.2.4']
|
|
27
27
|
)
|
|
@@ -41,7 +41,7 @@ class TMSLibrary:
|
|
|
41
41
|
self.enabled = built_in.get_variable_value("${testit}", None) is not None
|
|
42
42
|
if self.enabled:
|
|
43
43
|
cli_params = ["tmsUrl", "tmsPrivateToken", "tmsProjectId", "tmsConfigurationId", "tmsTestRunId",
|
|
44
|
-
"tmsTestRunName", "tmsAdapterMode", "tmsConfigFile", "tmsCertValidation",
|
|
44
|
+
"tmsProxy", "tmsTestRunName", "tmsAdapterMode", "tmsConfigFile", "tmsCertValidation",
|
|
45
45
|
"tmsAutomaticCreationTestCases", "tmsAutomaticUpdationLinksToTestCases"]
|
|
46
46
|
option = Option(**{param: built_in.get_variable_value(f'${{{param}}}', None) for param in cli_params})
|
|
47
47
|
self.adapter_manager = TmsPluginManager.get_adapter_manager(option)
|
|
@@ -199,8 +199,8 @@ class Option:
|
|
|
199
199
|
self.set_configuration_id = kwargs.get('tmsConfigurationId', None)
|
|
200
200
|
if kwargs.get('tmsTestRunId', None):
|
|
201
201
|
self.set_test_run_id = kwargs.get('tmsTestRunId', None)
|
|
202
|
-
if kwargs.get('
|
|
203
|
-
self.set_tms_proxy = kwargs.get('
|
|
202
|
+
if kwargs.get('tmsProxy', None):
|
|
203
|
+
self.set_tms_proxy = kwargs.get('tmsProxy', None)
|
|
204
204
|
if kwargs.get('tmsTestRunName', None):
|
|
205
205
|
self.set_test_run_name = kwargs.get('tmsTestRunName', None)
|
|
206
206
|
if kwargs.get('tmsAdapterMode', None):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-robotframework
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.4
|
|
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==3.2.
|
|
20
|
+
Requires-Dist: testit-python-commons==3.2.4
|
|
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
|