testit-python-commons 2.1.6__tar.gz → 2.1.8__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 (29) hide show
  1. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/PKG-INFO +1 -1
  2. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/setup.py +1 -1
  3. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/dynamic_methods.py +0 -1
  4. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons.egg-info/PKG-INFO +1 -1
  5. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/README.md +0 -0
  6. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/setup.cfg +0 -0
  7. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit.py +0 -0
  8. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/__init__.py +0 -0
  9. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/app_properties.py +0 -0
  10. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/client/__init__.py +0 -0
  11. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/client/api_client.py +0 -0
  12. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/client/client_configuration.py +0 -0
  13. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/client/converter.py +0 -0
  14. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/decorators.py +0 -0
  15. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/models/__init__.py +0 -0
  16. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/models/adapter_mode.py +0 -0
  17. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/models/link_type.py +0 -0
  18. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/models/outcome_type.py +0 -0
  19. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/services/__init__.py +0 -0
  20. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/services/adapter_manager.py +0 -0
  21. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/services/adapter_manager_configuration.py +0 -0
  22. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/services/logger.py +0 -0
  23. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/services/plugin_manager.py +0 -0
  24. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/services/utils.py +0 -0
  25. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons/step.py +0 -0
  26. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons.egg-info/SOURCES.txt +0 -0
  27. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons.egg-info/dependency_links.txt +0 -0
  28. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons.egg-info/requires.txt +0 -0
  29. {testit-python-commons-2.1.6 → testit-python-commons-2.1.8}/src/testit_python_commons.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: testit-python-commons
3
- Version: 2.1.6
3
+ Version: 2.1.8
4
4
  Summary: Python commons for Test IT
5
5
  Home-page: https://github.com/testit-tms/adapters-python/
6
6
  Author: Integration team
@@ -2,7 +2,7 @@ from setuptools import find_packages, setup
2
2
 
3
3
  setup(
4
4
  name='testit-python-commons',
5
- version='2.1.6',
5
+ version='2.1.8',
6
6
  description='Python commons for Test IT',
7
7
  long_description=open('README.md', "r").read(),
8
8
  long_description_content_type="text/markdown",
@@ -88,7 +88,6 @@ def addAttachments(data, is_text: bool = False, name: str = None): # noqa: N80
88
88
  logging.warning(f'File ({data}) not found!')
89
89
  else:
90
90
  if is_text and hasattr(TmsPluginManager.get_plugin_manager().hook, 'create_attachment'):
91
- Step.create_attachment(str(data), name)
92
91
  TmsPluginManager.get_plugin_manager().hook \
93
92
  .create_attachment(
94
93
  body=str(data),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: testit-python-commons
3
- Version: 2.1.6
3
+ Version: 2.1.8
4
4
  Summary: Python commons for Test IT
5
5
  Home-page: https://github.com/testit-tms/adapters-python/
6
6
  Author: Integration team