robotframework-robotlog2db 1.5.1__tar.gz → 1.5.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 (16) hide show
  1. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/PKG-INFO +3 -1
  2. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/README.rst +2 -1
  3. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/RobotLog2DB/RobotLog2DB.pdf +0 -0
  4. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/RobotLog2DB/robotlog2db.py +5 -1
  5. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/RobotLog2DB/version.py +2 -2
  6. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/robotframework_robotlog2db.egg-info/PKG-INFO +3 -1
  7. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/RobotLog2DB/__init__.py +0 -0
  8. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/RobotLog2DB/__main__.py +0 -0
  9. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/RobotLog2DB/xsd/robot.xsd +0 -0
  10. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/robotframework_robotlog2db.egg-info/SOURCES.txt +0 -0
  11. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/robotframework_robotlog2db.egg-info/dependency_links.txt +0 -0
  12. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/robotframework_robotlog2db.egg-info/entry_points.txt +0 -0
  13. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/robotframework_robotlog2db.egg-info/requires.txt +0 -0
  14. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/robotframework_robotlog2db.egg-info/top_level.txt +0 -0
  15. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/setup.cfg +0 -0
  16. {robotframework-robotlog2db-1.5.1 → robotframework-robotlog2db-1.5.2}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotframework-robotlog2db
3
- Version: 1.5.1
3
+ Version: 1.5.2
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
@@ -162,6 +162,8 @@ The usage should be showed as below:
162
162
  --config CONFIG configuration json file for component mapping information.
163
163
  --interface {db,rest}
164
164
  database access interface.
165
+ --testrunurl TESTRUNURL
166
+ link to test execution job: Jenkins job, Gitlab CI/CD pipeline, ...
165
167
 
166
168
  The below command is simple usage with all required arguments to import
167
169
  Robot Framework results into TestResultWebApp\'s database:
@@ -135,7 +135,8 @@ The usage should be showed as below:
135
135
  --config CONFIG configuration json file for component mapping information.
136
136
  --interface {db,rest}
137
137
  database access interface.
138
-
138
+ --testrunurl TESTRUNURL
139
+ link to test execution job: Jenkins job, Gitlab CI/CD pipeline, ...
139
140
 
140
141
  The below command is simple usage with all required arguments to import
141
142
  Robot Framework results into TestResultWebApp's database:
@@ -643,6 +643,7 @@ Avalable arguments in command line:
643
643
  - `--variant` : variant name to be set for this import.
644
644
  - `--versions` : metadata: Versions (Software;Hardware;Test) to be set for this import.
645
645
  - `--config` : configuration json file for component mapping information.
646
+ - `--testrunurl`: link to test execution job: Jenkins job, Gitlab CI/CD pipeline, ...
646
647
 
647
648
  **Arguments:**
648
649
 
@@ -690,6 +691,8 @@ Avalable arguments in command line:
690
691
  cmdParser.add_argument('--config', type=str,
691
692
  help='configuration json file for component mapping information.')
692
693
  cmdParser.add_argument('--interface', choices=['db', 'rest'], default='db', help='database access interface.')
694
+ cmdParser.add_argument('--testrunurl', type=str, default="",
695
+ help='link to test execution job: Jenkins job, Gitlab CI/CD pipeline, ...')
693
696
 
694
697
  return cmdParser.parse_args()
695
698
 
@@ -1182,6 +1185,7 @@ Flow to import Robot results to database:
1182
1185
  * `variant` : variant name to be set for this import.
1183
1186
  * `versions` : metadata: Versions (Software;Hardware;Test) to be set for this import.
1184
1187
  * `config` : configuration json file for component mapping information.
1188
+ * `testrunurl`: link to test execution job: Jenkins job, Gitlab CI/CD pipeline, ...
1185
1189
 
1186
1190
  **Returns:**
1187
1191
 
@@ -1333,7 +1337,7 @@ Flow to import Robot results to database:
1333
1337
 
1334
1338
  # Process other info
1335
1339
  _tbl_result_interpretation = ""
1336
- _tbl_result_jenkinsurl = ""
1340
+ _tbl_result_jenkinsurl = args.testrunurl
1337
1341
  _tbl_result_reporting_qualitygate = ""
1338
1342
 
1339
1343
  # Check the UUID is existing or not
@@ -18,5 +18,5 @@
18
18
  #
19
19
  # Version and date of RobotLog2DB
20
20
  #
21
- VERSION = "1.5.1"
22
- VERSION_DATE = "14.06.2024"
21
+ VERSION = "1.5.2"
22
+ VERSION_DATE = "28.06.2024"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: robotframework-robotlog2db
3
- Version: 1.5.1
3
+ Version: 1.5.2
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
@@ -162,6 +162,8 @@ The usage should be showed as below:
162
162
  --config CONFIG configuration json file for component mapping information.
163
163
  --interface {db,rest}
164
164
  database access interface.
165
+ --testrunurl TESTRUNURL
166
+ link to test execution job: Jenkins job, Gitlab CI/CD pipeline, ...
165
167
 
166
168
  The below command is simple usage with all required arguments to import
167
169
  Robot Framework results into TestResultWebApp\'s database: