testit-adapter-behave 3.4.0__tar.gz → 3.5.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.
Files changed (22) hide show
  1. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/PKG-INFO +12 -3
  2. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/setup.py +4 -2
  3. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave.egg-info/PKG-INFO +12 -3
  4. testit_adapter_behave-3.5.0/src/testit_adapter_behave.egg-info/requires.txt +3 -0
  5. testit_adapter_behave-3.4.0/src/testit_adapter_behave.egg-info/requires.txt +0 -3
  6. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/README.md +0 -0
  7. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/setup.cfg +0 -0
  8. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/__init__.py +0 -0
  9. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/formatter.py +0 -0
  10. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/listener.py +0 -0
  11. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/models/__init__.py +0 -0
  12. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/models/label.py +0 -0
  13. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/models/option.py +0 -0
  14. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/models/tags.py +0 -0
  15. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/models/test_result_step.py +0 -0
  16. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/models/url_link.py +0 -0
  17. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/scenario_parser.py +0 -0
  18. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/tags_parser.py +0 -0
  19. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave/utils.py +0 -0
  20. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave.egg-info/SOURCES.txt +0 -0
  21. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave.egg-info/dependency_links.txt +0 -0
  22. {testit_adapter_behave-3.4.0 → testit_adapter_behave-3.5.0}/src/testit_adapter_behave.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: testit-adapter-behave
3
- Version: 3.4.0
3
+ Version: 3.5.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,8 +16,17 @@ 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.4.0
19
+ Requires-Dist: testit-python-commons==3.5.0
20
20
  Requires-Dist: attrs
21
+ Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: license
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
21
30
 
22
31
  # Test IT TMS adapter for Behave
23
32
 
@@ -1,8 +1,10 @@
1
1
  from setuptools import find_packages, setup
2
2
 
3
+ VERSION = "3.5.0"
4
+
3
5
  setup(
4
6
  name='testit-adapter-behave',
5
- version='3.4.0',
7
+ version=VERSION,
6
8
  description='Behave adapter for Test IT',
7
9
  long_description=open('README.md', "r").read(),
8
10
  long_description_content_type="text/markdown",
@@ -25,6 +27,6 @@ setup(
25
27
  package_dir={'': 'src'},
26
28
  install_requires=[
27
29
  'behave',
28
- 'testit-python-commons==3.4.0',
30
+ 'testit-python-commons==3.5.0',
29
31
  'attrs'],
30
32
  )
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: testit-adapter-behave
3
- Version: 3.4.0
3
+ Version: 3.5.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,8 +16,17 @@ 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.4.0
19
+ Requires-Dist: testit-python-commons==3.5.0
20
20
  Requires-Dist: attrs
21
+ Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: description-content-type
26
+ Dynamic: home-page
27
+ Dynamic: license
28
+ Dynamic: requires-dist
29
+ Dynamic: summary
21
30
 
22
31
  # Test IT TMS adapter for Behave
23
32
 
@@ -0,0 +1,3 @@
1
+ behave
2
+ testit-python-commons==3.5.0
3
+ attrs
@@ -1,3 +0,0 @@
1
- behave
2
- testit-python-commons==3.4.0
3
- attrs