-
Notifications
You must be signed in to change notification settings - Fork 51
Description
What would you like the TestRail CLI to be able to do?
There are 100 suites, and it is necessary that all 100 suites are reported in one test run or test plan.
And need to be able not to specify the plan id (let it be created automatically) and the suite id, let the report be created based on the test case id`s that are in the xml report.
Why is this feature necessary on the TestRail CLI?
There are more than 100 suites and it is not possible to create only 1 report with all suites.
More details
trcli -n -c "$TR_CONFIG_PATH" -h "$TR_HOST" -k "$TR_KEY" parse_junit --title "$TR_LAUNCH_NAME" -f "$TR_REPORT_PATH" --case-matcher "property"
this command creates a test run and adds to it the test cases that are in the xml report.
it works with this approach
need the opportunity to report in the same way, but with this approach, without specifying the suite id
Now trcli has the option to specify a suite id, but only 1 suite id, this is not convenient if you have many suites, the report is created separately for each suite, need the ability to report all suites into one test run/plan.
And need the option not to specify the suite id and plan id, let the report be created automatically based on the test case IDs that are specified in the xml report.(the first approach provides this opportunity)
Interested in implementing it yourself?
No