saucectl icon indicating copy to clipboard operation
saucectl copied to clipboard

Support more than one instance in parallel per suite

Open 3dd93 opened this issue 11 months ago • 3 comments

🚀 Feature Proposal

Support more than one instance at a time per suite to achieve fully parallel executions as in a local machine.

Motivation

We are able to execute more than one suite with the concurrency argument but spec files inside every suite are running in serial mode and there is no way to run them in parallel mode.

3dd93 avatar Mar 15 '24 23:03 3dd93

Which framework? Cypress, Playwright or TestCafe?

alexplischke avatar Apr 03 '24 23:04 alexplischke

Hi @alexplischke sorry for the late response, we are using playwright

3dd93 avatar Jun 16 '24 21:06 3dd93

Ah! You can configure that one in the saucectl suite instead:

suites:
  - name: "Chromium Mac13"
    platformName: "macOS 13"
    testMatch: [".*.js"]
    params:
      workers: 2
      browserName: "chromium"
      project: "chromium"

alexplischke avatar Jun 17 '24 22:06 alexplischke