Stop running Cypress tests in parallel (#3485)
This commit is contained in:
parent
60cab1a95b
commit
ffe869504b
2 changed files with 0 additions and 9 deletions
5
.github/workflows/cypress.yml
vendored
5
.github/workflows/cypress.yml
vendored
|
@ -81,10 +81,6 @@ jobs:
|
||||||
needs: [build-keycloak, install-nightly]
|
needs: [build-keycloak, install-nightly]
|
||||||
if: always() && ( needs.build-keycloak.result == 'success' || needs.install-nightly.result == 'success' )
|
if: always() && ( needs.build-keycloak.result == 'success' || needs.install-nightly.result == 'success' )
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
fail-fast: false
|
|
||||||
matrix:
|
|
||||||
containers: [1, 2, 3, 4, 5]
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out Admin UI
|
- name: Check out Admin UI
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
@ -117,7 +113,6 @@ jobs:
|
||||||
with:
|
with:
|
||||||
install: false
|
install: false
|
||||||
record: true
|
record: true
|
||||||
parallel: true
|
|
||||||
browser: chrome
|
browser: chrome
|
||||||
wait-on: http://localhost:8080
|
wait-on: http://localhost:8080
|
||||||
working-directory: apps/admin-ui
|
working-directory: apps/admin-ui
|
||||||
|
|
|
@ -17,10 +17,6 @@ export default defineConfig({
|
||||||
numTestsKeptInMemory: 30,
|
numTestsKeptInMemory: 30,
|
||||||
videoUploadOnPasses: false,
|
videoUploadOnPasses: false,
|
||||||
|
|
||||||
retries: {
|
|
||||||
runMode: 3,
|
|
||||||
},
|
|
||||||
|
|
||||||
e2e: {
|
e2e: {
|
||||||
setupNodeEvents(on) {
|
setupNodeEvents(on) {
|
||||||
on(
|
on(
|
||||||
|
|
Loading…
Reference in a new issue