From e1a19f7c7e830a0bda9bc7c5a989c23eaf2e622e Mon Sep 17 00:00:00 2001 From: Akash Jain <15995028+akash-jain-10@users.noreply.github.com> Date: Wed, 18 Oct 2023 18:08:13 +0530 Subject: [PATCH] fix(CI): Cypress CI enable parallelization (#13637) --- .github/workflows/cypress-integration-tests-mysql.yml | 2 +- .github/workflows/cypress-integration-tests-postgresql.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cypress-integration-tests-mysql.yml b/.github/workflows/cypress-integration-tests-mysql.yml index 14ae852dfbf..2fb0418a3db 100644 --- a/.github/workflows/cypress-integration-tests-mysql.yml +++ b/.github/workflows/cypress-integration-tests-mysql.yml @@ -119,7 +119,7 @@ jobs: with: install: false record: true - parallel: false + parallel: true working-directory: openmetadata-ui/src/main/resources/ui/ wait-on: 'http://localhost:8585' group: cypress-ci-mysql-oss-${{ github.run_id }}-${{github.run_attempt}} diff --git a/.github/workflows/cypress-integration-tests-postgresql.yml b/.github/workflows/cypress-integration-tests-postgresql.yml index c54d9cd7d44..29100a77f5c 100644 --- a/.github/workflows/cypress-integration-tests-postgresql.yml +++ b/.github/workflows/cypress-integration-tests-postgresql.yml @@ -119,7 +119,7 @@ jobs: with: install: false record: true - parallel: false + parallel: true working-directory: openmetadata-ui/src/main/resources/ui/ wait-on: 'http://localhost:8585' group: cypress-ci-psql-oss-${{ github.run_id }}-${{github.run_attempt}}