There are examples of how a single test scenario can be integrated into CI/CD pipeline. But I’m wondering how to integrate all scenarios in the test suite. Haven’t found anything that could help with that. Could you please advise?
You can create a new scenario and add steps to reference other test scenarios. Include all the regression scenarios you need, then running this single scenario will test all of them.
There are two ways to integrate your test suite into CI/CD: 1. Use the -f
option in Apidog CLI to run all test scenarios in a folder as a test suite: Apidog CLI Options - Apidog Docs 2. Create a test suite by using “reference other test scenarios” in a single scenario, then integrate using that scenario’s command: Create a test scenario - Apidog Docs
- Root folder doesn’t have ID right?
- Root folder doesn’t have ID, right?
- Is it possible to use -f option more than once to include several folders into the run?
I’ve tested and seems like only latest -f option is considered. Is there a way to include several folders in a test run without creating another test suite using “reference other test scenarios”?
Currently, it’s not possible to use multiple -f
options or run the root folder directly. As a workaround, you can place all your test scenarios in a folder and run that folder. We’ll consider optimizing this feature in the future.
Yeah, I’ve tried both - running a folder and reference other test scenarios in a dedicated test case. And seems like it is fully satisfy my needs. Thanks for the detailed explanations!