testit-adapter-robotframework 2.1.10__tar.gz → 2.2.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.
Potentially problematic release.
This version of testit-adapter-robotframework might be problematic. Click here for more details.
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/PKG-INFO +3 -3
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/README.md +2 -2
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/setup.py +2 -2
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework.egg-info/PKG-INFO +3 -3
- testit-adapter-robotframework-2.2.0/src/testit_adapter_robotframework.egg-info/requires.txt +3 -0
- testit-adapter-robotframework-2.1.10/src/testit_adapter_robotframework.egg-info/requires.txt +0 -3
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/setup.cfg +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework/TMSLibrary.py +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework/__init__.py +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework/listeners.py +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework/models.py +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework/utils.py +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework.egg-info/SOURCES.txt +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/src/testit_adapter_robotframework.egg-info/dependency_links.txt +0 -0
- {testit-adapter-robotframework-2.1.10 → testit-adapter-robotframework-2.2.0}/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: 2.
|
|
3
|
+
Version: 2.2.0
|
|
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
|
|
@@ -38,7 +38,7 @@ pip install testit-adapter-robotframework
|
|
|
38
38
|
| Adapter mode. Default value - 0. The adapter supports following modes:<br/>0 - in this mode, the adapter filters tests by test run ID and configuration ID, and sends the results to the test run<br/>1 - in this mode, the adapter sends all results to the test run without filtering<br/>2 - in this mode, the adapter creates a new test run and sends results to the new test run | adapterMode | TMS_ADAPTER_MODE | tmsAdapterMode |
|
|
39
39
|
| It enables/disables certificate validation (**It's optional**). Default value - true | certValidation | TMS_CERT_VALIDATION | tmsCertValidation |
|
|
40
40
|
| Mode of automatic creation test cases (**It's optional**). Default value - false. The adapter supports following modes:<br/>true - in this mode, the adapter will create a test case linked to the created autotest (not to the updated autotest)<br/>false - in this mode, the adapter will not create a test case | automaticCreationTestCases | TMS_AUTOMATIC_CREATION_TEST_CASES | tmsAutomaticCreationTestCases |
|
|
41
|
-
|
|
|
41
|
+
| Url of proxy server (**It's optional**) | tmsProxy | TMS_PROXY | tmsProxy |
|
|
42
42
|
| Name of the configuration file If it is not provided, it is used default file name (**It's optional**) | - | TMS_CONFIG_FILE | tmsConfigFile |
|
|
43
43
|
|
|
44
44
|
#### File
|
|
@@ -58,7 +58,7 @@ automaticCreationTestCases = AUTOMATIC_CREATION_TEST_CASES
|
|
|
58
58
|
|
|
59
59
|
# This section are optional. It enables debug mode.
|
|
60
60
|
[debug]
|
|
61
|
-
tmsProxy =
|
|
61
|
+
tmsProxy = TMS_PROXY
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
#### Examples
|
|
@@ -23,7 +23,7 @@ pip install testit-adapter-robotframework
|
|
|
23
23
|
| Adapter mode. Default value - 0. The adapter supports following modes:<br/>0 - in this mode, the adapter filters tests by test run ID and configuration ID, and sends the results to the test run<br/>1 - in this mode, the adapter sends all results to the test run without filtering<br/>2 - in this mode, the adapter creates a new test run and sends results to the new test run | adapterMode | TMS_ADAPTER_MODE | tmsAdapterMode |
|
|
24
24
|
| It enables/disables certificate validation (**It's optional**). Default value - true | certValidation | TMS_CERT_VALIDATION | tmsCertValidation |
|
|
25
25
|
| Mode of automatic creation test cases (**It's optional**). Default value - false. The adapter supports following modes:<br/>true - in this mode, the adapter will create a test case linked to the created autotest (not to the updated autotest)<br/>false - in this mode, the adapter will not create a test case | automaticCreationTestCases | TMS_AUTOMATIC_CREATION_TEST_CASES | tmsAutomaticCreationTestCases |
|
|
26
|
-
|
|
|
26
|
+
| Url of proxy server (**It's optional**) | tmsProxy | TMS_PROXY | tmsProxy |
|
|
27
27
|
| Name of the configuration file If it is not provided, it is used default file name (**It's optional**) | - | TMS_CONFIG_FILE | tmsConfigFile |
|
|
28
28
|
|
|
29
29
|
#### File
|
|
@@ -43,7 +43,7 @@ automaticCreationTestCases = AUTOMATIC_CREATION_TEST_CASES
|
|
|
43
43
|
|
|
44
44
|
# This section are optional. It enables debug mode.
|
|
45
45
|
[debug]
|
|
46
|
-
tmsProxy =
|
|
46
|
+
tmsProxy = TMS_PROXY
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
#### Examples
|
|
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='testit-adapter-robotframework',
|
|
5
|
-
version='2.
|
|
5
|
+
version='2.2.0',
|
|
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",
|
|
@@ -20,5 +20,5 @@ setup(
|
|
|
20
20
|
py_modules=['testit_adapter_robotframework'],
|
|
21
21
|
packages=find_packages(where='src'),
|
|
22
22
|
package_dir={'': 'src'},
|
|
23
|
-
install_requires=['attrs', 'robotframework', 'testit-python-commons==2.
|
|
23
|
+
install_requires=['attrs', 'robotframework', 'testit-python-commons==2.2.0']
|
|
24
24
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-robotframework
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.2.0
|
|
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
|
|
@@ -38,7 +38,7 @@ pip install testit-adapter-robotframework
|
|
|
38
38
|
| Adapter mode. Default value - 0. The adapter supports following modes:<br/>0 - in this mode, the adapter filters tests by test run ID and configuration ID, and sends the results to the test run<br/>1 - in this mode, the adapter sends all results to the test run without filtering<br/>2 - in this mode, the adapter creates a new test run and sends results to the new test run | adapterMode | TMS_ADAPTER_MODE | tmsAdapterMode |
|
|
39
39
|
| It enables/disables certificate validation (**It's optional**). Default value - true | certValidation | TMS_CERT_VALIDATION | tmsCertValidation |
|
|
40
40
|
| Mode of automatic creation test cases (**It's optional**). Default value - false. The adapter supports following modes:<br/>true - in this mode, the adapter will create a test case linked to the created autotest (not to the updated autotest)<br/>false - in this mode, the adapter will not create a test case | automaticCreationTestCases | TMS_AUTOMATIC_CREATION_TEST_CASES | tmsAutomaticCreationTestCases |
|
|
41
|
-
|
|
|
41
|
+
| Url of proxy server (**It's optional**) | tmsProxy | TMS_PROXY | tmsProxy |
|
|
42
42
|
| Name of the configuration file If it is not provided, it is used default file name (**It's optional**) | - | TMS_CONFIG_FILE | tmsConfigFile |
|
|
43
43
|
|
|
44
44
|
#### File
|
|
@@ -58,7 +58,7 @@ automaticCreationTestCases = AUTOMATIC_CREATION_TEST_CASES
|
|
|
58
58
|
|
|
59
59
|
# This section are optional. It enables debug mode.
|
|
60
60
|
[debug]
|
|
61
|
-
tmsProxy =
|
|
61
|
+
tmsProxy = TMS_PROXY
|
|
62
62
|
```
|
|
63
63
|
|
|
64
64
|
#### Examples
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|