robotframework-robotlog2db 1.5.0__tar.gz → 1.5.1__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 (16) hide show
  1. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/PKG-INFO +1 -1
  2. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/RobotLog2DB/RobotLog2DB.pdf +0 -0
  3. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/RobotLog2DB/robotlog2db.py +6 -3
  4. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/RobotLog2DB/version.py +2 -2
  5. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/robotframework_robotlog2db.egg-info/PKG-INFO +1 -1
  6. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/README.rst +0 -0
  7. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/RobotLog2DB/__init__.py +0 -0
  8. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/RobotLog2DB/__main__.py +0 -0
  9. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/RobotLog2DB/xsd/robot.xsd +0 -0
  10. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/robotframework_robotlog2db.egg-info/SOURCES.txt +0 -0
  11. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/robotframework_robotlog2db.egg-info/dependency_links.txt +0 -0
  12. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/robotframework_robotlog2db.egg-info/entry_points.txt +0 -0
  13. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/robotframework_robotlog2db.egg-info/requires.txt +0 -0
  14. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/robotframework_robotlog2db.egg-info/top_level.txt +0 -0
  15. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/setup.cfg +0 -0
  16. {robotframework-robotlog2db-1.5.0 → robotframework-robotlog2db-1.5.1}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotframework-robotlog2db
3
- Version: 1.5.0
3
+ Version: 1.5.1
4
4
  Summary: Imports robot result(s) to TestResultWebApp database
5
5
  Home-page: https://github.com/test-fullautomation/robotframework-robotlog2db
6
6
  Author: Tran Duy Ngoan
@@ -58,7 +58,8 @@ from RobotLog2DB.version import VERSION, VERSION_DATE
58
58
  DRESULT_MAPPING = {
59
59
  "PASS": "Passed",
60
60
  "FAIL": "Failed",
61
- "UNKNOWN": "Unknown"
61
+ "UNKNOWN": "Unknown",
62
+ "SKIP": "Unknown"
62
63
  }
63
64
 
64
65
  DEFAULT_METADATA = {
@@ -1024,8 +1025,10 @@ Process test case data and create new test case record.
1024
1025
  try:
1025
1026
  _tbl_case_result_main = DRESULT_MAPPING[test.status]
1026
1027
  except Exception:
1027
- Logger.log_error(f"Invalid Robotframework result state '{test.status}' of test '{_tbl_case_name}'.")
1028
- return
1028
+ # Robotframework result's validation is done before
1029
+ # Set further status as unknown
1030
+ _tbl_case_result_main = DRESULT_MAPPING['UNKNOWN']
1031
+
1029
1032
  _tbl_case_result_state = "complete"
1030
1033
  _tbl_case_result_return = 11
1031
1034
  _tbl_case_counter_resets = 0
@@ -18,5 +18,5 @@
18
18
  #
19
19
  # Version and date of RobotLog2DB
20
20
  #
21
- VERSION = "1.5.0"
22
- VERSION_DATE = "22.04.2024"
21
+ VERSION = "1.5.1"
22
+ VERSION_DATE = "14.06.2024"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotframework-robotlog2db
3
- Version: 1.5.0
3
+ Version: 1.5.1
4
4
  Summary: Imports robot result(s) to TestResultWebApp database
5
5
  Home-page: https://github.com/test-fullautomation/robotframework-robotlog2db
6
6
  Author: Tran Duy Ngoan