Skip to content
Snippets Groups Projects
Commit dd049e7b authored by OZGCloud's avatar OZGCloud
Browse files

OZG-3934 Use new Cypress configuration parameter (7)

parent 5388166c
No related branches found
No related tags found
No related merge requests found
...@@ -199,14 +199,10 @@ pipeline { ...@@ -199,14 +199,10 @@ pipeline {
// } // }
// } // }
stage('Run E2E-Tests') { stage('Run E2E-EA Tests') {
when { when {
expression { !SKIP_RUN } expression { !SKIP_RUN }
} }
failFast false
parallel {
stage('E2E-EA') {
steps { steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') { catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { script {
...@@ -233,7 +229,10 @@ pipeline { ...@@ -233,7 +229,10 @@ pipeline {
} }
} }
stage('E2E-Main') { stage('Run E2E-Main Tests') {
when {
expression { !SKIP_RUN }
}
steps { steps {
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') { catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
script { script {
...@@ -259,8 +258,6 @@ pipeline { ...@@ -259,8 +258,6 @@ pipeline {
} }
} }
} }
}
}
stage('Delete E2E Namespaces') { stage('Delete E2E Namespaces') {
when { when {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment