Cypress - AWS Code Build

Running Cypress in parallel on AWS CodeBuild

circle-info

Executing Cypress tests in parallel on AWS CodeBuild can significantly reduce the overall run duration. AWS CodeBuild supports Batched Buildarrow-up-right in matrix modearrow-up-right for launching several workers in parallel.

Those workers will use Currents as an orchestration service - each worker will run a subset of spec files and report the results to the cloud dashboard for convenient reporting and troubleshooting.

Prerequisites

To enable parallel runs, please make sure:

  • you have privileged access to your AWS Account

  • you have an AWS CodeBuild project created with the batched configuration enabled

Configuration Steps

The first step is to create a buildspec.yml file in the root directory of your application's source code repository. This file defines the build and test steps for your application.

In the buildspec.yml file, you need to create multiple workers that will run your Cypress tests in parallel by setting the desired number of workers. See an example with 3 workers below:

## buildspec.yml
version: 0.2

batch:
  fast-fail: false
  build-matrix:
    dynamic:
      buildspec:
        - buildspec.yml
      env:
        variables:
          WORKERS:
            - 1
            - 2
            - 3

  phases:
    install:
      runtime-versions:
        nodejs: latest
      commands:
        # Set COMMIT_INFO variables to send Git details to Currents
        - export COMMIT_INFO_BRANCH="$(git rev-parse HEAD | xargs git name-rev |
          cut -d' ' -f2 | sed 's/remotes\/origin\///g')"
        - export COMMIT_INFO_MESSAGE="$(git log -1 --pretty=%B)"
        - export COMMIT_INFO_EMAIL="$(git log -1 --pretty=%ae)"
        - export COMMIT_INFO_AUTHOR="$(git log -1 --pretty=%an)"
        - export COMMIT_INFO_SHA="$(git log -1 --pretty=%H)"
        - export COMMIT_INFO_REMOTE="$(git config --get remote.origin.url)"
        - npm ci
    build:
      commands:
        - npx cypress-cloud run --record --parallel --ci-build-id $CODEBUILD_INITIATOR

You must also include the necessary commands to install Cypress, configure parallel execution, and run your tests.

By distributing tests to each worker, Currents enables faster execution of Cypress tests on AWS CodeBuild. This parallel execution ensures quicker feedback from your browser test suite while leveraging intelligent optimizations to minimize the overall runtime.

Additionally, Currents captures screenshots and videos during the test execution, facilitating troubleshooting efforts.

Example: Cypress Tests in parallel on AWS CodeBuild

Please refer to example repositoryarrow-up-right that demonstrates how to set up AWS Code Build for running cypress tests in parallel using Currentsarrow-up-right service.

The example config filearrow-up-right:

Note:

Here's an example of the demo run in Currents dashboard. Note that 3 runners were used as part of this run:

Running cypress tests in parallel on AWS Code Build

Last updated

Was this helpful?