testit-adapter-behave 2.8.2__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-behave-2.8.2 → testit_adapter_behave-3.0.0}/PKG-INFO +2 -2
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/setup.py +2 -2
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave.egg-info/PKG-INFO +2 -2
- testit_adapter_behave-3.0.0/src/testit_adapter_behave.egg-info/requires.txt +3 -0
- testit-adapter-behave-2.8.2/src/testit_adapter_behave.egg-info/requires.txt +0 -3
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/README.md +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/setup.cfg +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/__init__.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/formatter.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/listener.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/__init__.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/label.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/option.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/tags.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/test_result_step.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/url_link.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/scenario_parser.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/tags_parser.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/utils.py +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave.egg-info/SOURCES.txt +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave.egg-info/dependency_links.txt +0 -0
- {testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-behave
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0
|
|
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==
|
|
19
|
+
Requires-Dist: testit-python-commons==3.0.0
|
|
20
20
|
Requires-Dist: attrs
|
|
21
21
|
|
|
22
22
|
# Test IT TMS adapter for Behave
|
|
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='testit-adapter-behave',
|
|
5
|
-
version='
|
|
5
|
+
version='3.0.0',
|
|
6
6
|
description='Behave adapter for Test IT',
|
|
7
7
|
long_description=open('README.md', "r").read(),
|
|
8
8
|
long_description_content_type="text/markdown",
|
|
@@ -25,6 +25,6 @@ setup(
|
|
|
25
25
|
package_dir={'': 'src'},
|
|
26
26
|
install_requires=[
|
|
27
27
|
'behave',
|
|
28
|
-
'testit-python-commons==
|
|
28
|
+
'testit-python-commons==3.0.0',
|
|
29
29
|
'attrs'],
|
|
30
30
|
)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: testit-adapter-behave
|
|
3
|
-
Version:
|
|
3
|
+
Version: 3.0.0
|
|
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==
|
|
19
|
+
Requires-Dist: testit-python-commons==3.0.0
|
|
20
20
|
Requires-Dist: attrs
|
|
21
21
|
|
|
22
22
|
# Test IT TMS adapter for Behave
|
|
File without changes
|
|
File without changes
|
{testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/__init__.py
RENAMED
|
File without changes
|
{testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/formatter.py
RENAMED
|
File without changes
|
{testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/listener.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/models/tags.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/tags_parser.py
RENAMED
|
File without changes
|
{testit-adapter-behave-2.8.2 → testit_adapter_behave-3.0.0}/src/testit_adapter_behave/utils.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|