You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* option `--merge` to create suite per plan and merge them all in one launch
(stored launch uuid in run of the first plan)
* option '--attributes' for additional attributes,
but mainly for assignment of attributes to the launch with merged plans
* option `--uuid` to append new plans to an existing launch
* store launch uuid as rp_uuid per merged run, and as launch_uuid per each plan,
store launch_url per each plan
* rewritten environment variables to the uniform form TMT_PLUGIN_REPORT_REPORTPORTAL_${option}
* prepared defect type locator for implementation of continuous update (idle)
* prepared rerun for implementation of launch update (retry)
* mapping according to options --launch-per-plan and --suite-per-plan
* uploading to existing launch/suite with options --upload-to-launch LAUNCH_ID, --upload-to-suite SUITE_ID
* option --launch-description and preparation for --launch-attributes (for suite-per-plan mapping)
* trial option --launch-rerun
* trial option --defect-type
* functional --suite-per-plan option that uploads all plans into a launch;
+ reporting common atributes from all plans, closing the launch after last plan
* additional upload of tests/suites into a existing launch
* functional idle report and additional report within run id
* functional upload to launch
* debug based on option combinations
* fixed the functonality to report idle tests and additional results
# Enable ReportPortal report from the command line
116
+
# Enable ReportPortal report from the command line depending on the use case:
117
+
118
+
## Simple upload with all project, url endpoint and user token passed in command line
119
+
tmt run --all report --how reportportal --project=baseosqe --url="https://reportportal.xxx.com" --token="abc...789"
120
+
121
+
## Simple upload with url and token exported in environment variable
116
122
tmt run --all report --how reportportal --project=baseosqe
117
-
tmt run --all report --how reportportal --project=baseosqe --exclude-variables="^(TMT|PACKIT|TESTING_FARM).*"
118
-
tmt run --all report --how reportportal --project=baseosqe --launch=test_plan
119
-
tmt run --all report --how reportportal --project=baseosqe --url=... --token=...
123
+
124
+
## Upload with project name in fmf data, filtering out parameters (environemnt variables) that tend to be unique and break the history aggregation
125
+
tmt run --all report --how reportportal --exclude-variables="^(TMT|PACKIT|TESTING_FARM).*"
126
+
127
+
## Upload all plans as suites into one ReportPortal launch
128
+
tmt run --all report --how reportportal --suite-per-plan --launch=Errata --launch-description="..."
129
+
130
+
## Rerun the launch with suite structure for the test results to be uploaded into the latest launch with the same name as a new 'Retry' tab (mapping based on unique paths)
131
+
tmt run --all report --how reportportal --suite-per-plan --launch=Errata --launch-rerun
132
+
133
+
## Rerun the tmt run and append the new result logs under the previous one uploaded in ReportPortal (precise mapping)
134
+
tmt run --id run-012 --all report --how reportportal --again
135
+
136
+
## Additional upload of new suites into given launch with suite structure
137
+
tmt run --all report --how reportportal --suite-per-plan --upload-to-launch=4321
138
+
139
+
## Additional upload of new tests into given launch with non-suite structure
140
+
tmt run --all report --how reportportal --launch-per-plan --upload-to-launch=1234
141
+
142
+
## Additional upload of new tests into given suite
143
+
tmt run --all report --how reportportal --upload-to-suite=123456
144
+
145
+
## Upload Idle tests, then execute it and add result logs into prepared empty tests
146
+
tmt run discover report --how reportportal --defect-type=Idle
147
+
tmt run --last --all report --how reportportal --again
120
148
- |
121
149
# Use ReportPortal as the default report for given plan
0 commit comments