testit-adapter-pytest 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 (18) hide show
  1. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/PKG-INFO +12 -3
  2. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/setup.py +4 -2
  3. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest.egg-info/PKG-INFO +12 -3
  4. testit_adapter_pytest-3.5.0/src/testit_adapter_pytest.egg-info/requires.txt +4 -0
  5. testit_adapter_pytest-3.4.0/src/testit_adapter_pytest.egg-info/requires.txt +0 -4
  6. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/README.md +0 -0
  7. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/setup.cfg +0 -0
  8. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/__init__.py +0 -0
  9. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/fixture_context.py +0 -0
  10. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/listener.py +0 -0
  11. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/models/__init__.py +0 -0
  12. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/models/executable_test.py +0 -0
  13. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/plugin.py +0 -0
  14. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest/utils.py +0 -0
  15. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest.egg-info/SOURCES.txt +0 -0
  16. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest.egg-info/dependency_links.txt +0 -0
  17. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest.egg-info/entry_points.txt +0 -0
  18. {testit_adapter_pytest-3.4.0 → testit_adapter_pytest-3.5.0}/src/testit_adapter_pytest.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-pytest
3
- Version: 3.4.0
3
+ Version: 3.5.0
4
4
  Summary: Pytest adapter for Test IT
5
5
  Home-page: https://github.com/testit-tms/adapters-python/
6
6
  Author: Integration team
@@ -16,7 +16,16 @@ Description-Content-Type: text/markdown
16
16
  Requires-Dist: pytest
17
17
  Requires-Dist: pytest-xdist
18
18
  Requires-Dist: attrs
19
- Requires-Dist: testit-python-commons==3.4.0
19
+ Requires-Dist: testit-python-commons==3.5.0
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: license
27
+ Dynamic: requires-dist
28
+ Dynamic: summary
20
29
 
21
30
  # Test IT TMS adapter for Pytest
22
31
 
@@ -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-pytest',
5
- version='3.4.0',
7
+ version=VERSION,
6
8
  description='Pytest adapter for Test IT',
7
9
  long_description=open('README.md', "r").read(),
8
10
  long_description_content_type="text/markdown",
@@ -21,6 +23,6 @@ setup(
21
23
  py_modules=['testit_adapter_pytest'],
22
24
  packages=find_packages(where='src'),
23
25
  package_dir={'': 'src'},
24
- install_requires=['pytest', 'pytest-xdist', 'attrs', 'testit-python-commons==3.4.0'],
26
+ install_requires=['pytest', 'pytest-xdist', 'attrs', 'testit-python-commons==3.5.0'],
25
27
  entry_points={'pytest11': ['testit_adapter_pytest = testit_adapter_pytest.plugin']}
26
28
  )
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.2
2
2
  Name: testit-adapter-pytest
3
- Version: 3.4.0
3
+ Version: 3.5.0
4
4
  Summary: Pytest adapter for Test IT
5
5
  Home-page: https://github.com/testit-tms/adapters-python/
6
6
  Author: Integration team
@@ -16,7 +16,16 @@ Description-Content-Type: text/markdown
16
16
  Requires-Dist: pytest
17
17
  Requires-Dist: pytest-xdist
18
18
  Requires-Dist: attrs
19
- Requires-Dist: testit-python-commons==3.4.0
19
+ Requires-Dist: testit-python-commons==3.5.0
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: license
27
+ Dynamic: requires-dist
28
+ Dynamic: summary
20
29
 
21
30
  # Test IT TMS adapter for Pytest
22
31
 
@@ -0,0 +1,4 @@
1
+ pytest
2
+ pytest-xdist
3
+ attrs
4
+ testit-python-commons==3.5.0
@@ -1,4 +0,0 @@
1
- pytest
2
- pytest-xdist
3
- attrs
4
- testit-python-commons==3.4.0