Cypress Parallel Run - in Github Actions #26639
Unanswered
jkesineni-incomm
asked this question in
Questions and Help
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi All ,
I am working on Cypress GitHub Actions to run selected test suite in pipeline. and planning to run parallel so that we can reduce the regression time.
I followed the sample code and able to trigger the flow and its creating 3 containers, but not running parallel, its running all one after other.
I have enabled parallel flag. here is the config used.
uses: cypress-io/[email protected]
id: parse1
# uses: tgamauf/cypress-parallel@v2
with:
browser: electron
group: "UI - Chrome"
parallel: true
count-runners: 3
record: true
server: ${{ github.event.inputs.environment }}
env: SUITE=${{ github.event.inputs.suitename }}
#spec: cypress/integration/test_flows/regular-cases/happy-path.spec.js
env:
# For recording and parallelization to work you must set your CYPRESS_RECORD_KEY
# in GitHub repo → Settings → Secrets → Actions
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
please help me if anything i am missing here.
Beta Was this translation helpful? Give feedback.
All reactions