testit-cli 2.9.1__tar.gz → 2.9.2__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 (36) hide show
  1. {testit_cli-2.9.1 → testit_cli-2.9.2}/PKG-INFO +1 -1
  2. {testit_cli-2.9.1 → testit_cli-2.9.2}/setup.py +1 -1
  3. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/converter.py +1 -1
  4. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli.egg-info/PKG-INFO +1 -1
  5. {testit_cli-2.9.1 → testit_cli-2.9.2}/LICENSE +0 -0
  6. {testit_cli-2.9.1 → testit_cli-2.9.2}/README.md +0 -0
  7. {testit_cli-2.9.1 → testit_cli-2.9.2}/setup.cfg +0 -0
  8. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/__init__.py +0 -0
  9. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/__main__.py +0 -0
  10. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/apiclient.py +0 -0
  11. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/autotests_filter.py +0 -0
  12. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/click_commands.py +0 -0
  13. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/dir_worker.py +0 -0
  14. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/file_worker.py +0 -0
  15. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/filter_factory.py +0 -0
  16. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/html_escape_utils.py +0 -0
  17. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/http_retry.py +0 -0
  18. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/importer.py +0 -0
  19. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/logger.py +0 -0
  20. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/models/__init__.py +0 -0
  21. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/models/config.py +0 -0
  22. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/models/mode.py +0 -0
  23. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/models/status_type.py +0 -0
  24. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/models/testcase.py +0 -0
  25. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/models/testrun.py +0 -0
  26. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/parser.py +0 -0
  27. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/service.py +0 -0
  28. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/service_factory.py +0 -0
  29. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli/validation.py +0 -0
  30. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli.egg-info/SOURCES.txt +0 -0
  31. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli.egg-info/dependency_links.txt +0 -0
  32. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli.egg-info/entry_points.txt +0 -0
  33. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli.egg-info/requires.txt +0 -0
  34. {testit_cli-2.9.1 → testit_cli-2.9.2}/src/testit_cli.egg-info/top_level.txt +0 -0
  35. {testit_cli-2.9.1 → testit_cli-2.9.2}/tests/test_click.py +0 -0
  36. {testit_cli-2.9.1 → testit_cli-2.9.2}/tests/test_service.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testit-cli
3
- Version: 2.9.1
3
+ Version: 2.9.2
4
4
  Summary: This tool is the command line wrapper of Test IT allowing you to upload the test results in real time to Test IT
5
5
  Home-page: https://pypi.org/project/testit-cli/
6
6
  Author: Integration team
@@ -1,6 +1,6 @@
1
1
  from setuptools import find_packages, setup
2
2
 
3
- VERSION = "2.9.1"
3
+ VERSION = "2.9.2"
4
4
 
5
5
  setup(
6
6
  name='testit-cli',
@@ -116,7 +116,7 @@ class Converter:
116
116
  model = AutoTestResultsForTestRunModel(
117
117
  configuration_id=configuration_id,
118
118
  auto_test_external_id=external_id,
119
- status_type=TestStatusType(result.get_status_type()),
119
+ status_type=TestStatusType(result.get_status_type().value),
120
120
  traces=result.get_trace(),
121
121
  duration=round(result.get_duration()),
122
122
  message=result.get_message(),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: testit-cli
3
- Version: 2.9.1
3
+ Version: 2.9.2
4
4
  Summary: This tool is the command line wrapper of Test IT allowing you to upload the test results in real time to Test IT
5
5
  Home-page: https://pypi.org/project/testit-cli/
6
6
  Author: Integration team
File without changes
File without changes
File without changes