testit-adapter-behave 3.8.0__tar.gz → 3.9.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.
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/PKG-INFO +2 -2
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/setup.py +1 -1
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/utils.py +2 -2
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave.egg-info/PKG-INFO +2 -2
- testit_adapter_behave-3.9.1/src/testit_adapter_behave.egg-info/requires.txt +3 -0
- testit_adapter_behave-3.8.0/src/testit_adapter_behave.egg-info/requires.txt +0 -3
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/README.md +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/setup.cfg +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/__init__.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/formatter.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/listener.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/__init__.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/label.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/option.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/tags.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/test_result_step.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/url_link.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/scenario_parser.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/tags_parser.py +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave.egg-info/SOURCES.txt +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave.egg-info/dependency_links.txt +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave.egg-info/top_level.txt +0 -0
- {testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/tests/test_formatter.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testit-adapter-behave
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.9.1
|
|
4
4
|
Summary: Behave adapter for Test IT
|
|
5
5
|
Home-page: https://github.com/testit-tms/adapters-python/
|
|
6
6
|
Author: Integration team
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
Requires-Dist: behave
|
|
19
|
-
Requires-Dist: testit-python-commons==3.
|
|
19
|
+
Requires-Dist: testit-python-commons==3.9.1
|
|
20
20
|
Requires-Dist: attrs
|
|
21
21
|
Dynamic: author
|
|
22
22
|
Dynamic: author-email
|
{testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/utils.py
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import hashlib
|
|
2
2
|
import logging
|
|
3
3
|
import re
|
|
4
|
-
import
|
|
4
|
+
from typing import List
|
|
5
5
|
|
|
6
6
|
from testit_python_commons.models.step_result import StepResult
|
|
7
7
|
from testit_python_commons.models.test_result import TestResult
|
|
@@ -148,7 +148,7 @@ def convert_executable_test_to_test_result_model(executable_test: dict) -> TestR
|
|
|
148
148
|
.set_external_key(executable_test['externalKey'])
|
|
149
149
|
|
|
150
150
|
|
|
151
|
-
def convert_step_to_step_result_model(step: dict, nested_step_results:
|
|
151
|
+
def convert_step_to_step_result_model(step: dict, nested_step_results: List[StepResult]) -> StepResult:
|
|
152
152
|
step_result_model = StepResult()\
|
|
153
153
|
.set_title(step['title'])\
|
|
154
154
|
.set_description(step['description'])\
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: testit-adapter-behave
|
|
3
|
-
Version: 3.
|
|
3
|
+
Version: 3.9.1
|
|
4
4
|
Summary: Behave adapter for Test IT
|
|
5
5
|
Home-page: https://github.com/testit-tms/adapters-python/
|
|
6
6
|
Author: Integration team
|
|
@@ -16,7 +16,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
Requires-Dist: behave
|
|
19
|
-
Requires-Dist: testit-python-commons==3.
|
|
19
|
+
Requires-Dist: testit-python-commons==3.9.1
|
|
20
20
|
Requires-Dist: attrs
|
|
21
21
|
Dynamic: author
|
|
22
22
|
Dynamic: author-email
|
|
File without changes
|
|
File without changes
|
{testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/__init__.py
RENAMED
|
File without changes
|
{testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/formatter.py
RENAMED
|
File without changes
|
{testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/listener.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/models/tags.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testit_adapter_behave-3.8.0 → testit_adapter_behave-3.9.1}/src/testit_adapter_behave/tags_parser.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|