From fcf1ff3ea15bb4ea646419fd973b61e7f325ff33 Mon Sep 17 00:00:00 2001 From: Robb Hamilton Date: Tue, 3 Oct 2023 10:52:40 -0400 Subject: [PATCH] Disable other packages --- test-cypress.sh | 22 +++++++++++----------- test-prow-e2e.sh | 24 ++++++++++++------------ 2 files changed, 23 insertions(+), 23 deletions(-) diff --git a/test-cypress.sh b/test-cypress.sh index b4908eac0778..bdff82059b4a 100755 --- a/test-cypress.sh +++ b/test-cypress.sh @@ -56,13 +56,13 @@ if [ -n "${nightly-}" ] && [ -z "${pkg-}" ]; then err=0 trap 'err=1' ERR - yarn run test-cypress-dev-console-nightly - yarn run test-cypress-helm-nightly - yarn run test-cypress-pipelines-nightly - yarn run test-cypress-shipwright-nightly - yarn run test-cypress-topology-nightly - yarn run test-cypress-knative-nightly - yarn run test-cypress-webterminal-nightly + # yarn run test-cypress-dev-console-nightly + # yarn run test-cypress-helm-nightly + # yarn run test-cypress-pipelines-nightly + # yarn run test-cypress-shipwright-nightly + # yarn run test-cypress-topology-nightly + # yarn run test-cypress-knative-nightly + # yarn run test-cypress-webterminal-nightly exit $err; fi @@ -71,10 +71,10 @@ if [ -n "${headless-}" ] && [ -z "${pkg-}" ]; then yarn run test-cypress-console-headless yarn run test-cypress-dev-console-headless yarn run test-cypress-olm-headless - yarn run test-cypress-helm-headless - yarn run test-cypress-knative-headless - yarn run test-cypress-topology-headless - yarn run test-cypress-pipelines-headless + # yarn run test-cypress-helm-headless + # yarn run test-cypress-knative-headless + # yarn run test-cypress-topology-headless + # yarn run test-cypress-pipelines-headless # yarn run test-cypress-shipwright-headless # yarn run test-cypress-webterminal-headless exit; diff --git a/test-prow-e2e.sh b/test-prow-e2e.sh index 6315c51b7075..ce7885226149 100755 --- a/test-prow-e2e.sh +++ b/test-prow-e2e.sh @@ -52,16 +52,16 @@ elif [ "$SCENARIO" == "login" ]; then ./test-cypress.sh -p console -s 'tests/app/auth-multiuser-login.spec.ts' -h true elif [ "$SCENARIO" == "olmFull" ]; then ./test-cypress.sh -p olm -h true -elif [ "$SCENARIO" == "ceph" ]; then - ./test-cypress.sh -p ceph -h true -elif [ "$SCENARIO" == "kubevirt-gating" ]; then - ./test-cypress.sh -p kubevirt -h true -elif [ "$SCENARIO" == "dev-console" ]; then - ./test-cypress.sh -p dev-console -h true -elif [ "$SCENARIO" == "pipelines" ]; then - ./test-cypress.sh -p pipelines -h true -elif [ "$SCENARIO" == "gitops" ]; then - ./test-cypress.sh -p gitops -h true - elif [ "$SCENARIO" == "knative" ]; then - ./test-cypress.sh -p knative -h true +# elif [ "$SCENARIO" == "ceph" ]; then +# ./test-cypress.sh -p ceph -h true +# elif [ "$SCENARIO" == "kubevirt-gating" ]; then +# ./test-cypress.sh -p kubevirt -h true +# elif [ "$SCENARIO" == "dev-console" ]; then +# ./test-cypress.sh -p dev-console -h true +# elif [ "$SCENARIO" == "pipelines" ]; then +# ./test-cypress.sh -p pipelines -h true +# elif [ "$SCENARIO" == "gitops" ]; then +# ./test-cypress.sh -p gitops -h true +# elif [ "$SCENARIO" == "knative" ]; then +# ./test-cypress.sh -p knative -h true fi