File tree Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Expand file tree Collapse file tree 2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,6 @@ Use: $0 with the next options:
22
22
--skip-dev Skip dev-mode validations
23
23
--skip-clean Do not clean maven cache
24
24
--skip-helm Do not re-install control-center with helm and continue running tests, implies (--offline, --keep-cc)
25
- --skip-setup Like --skip-helm but also do not run first playwright setup test, implies --skip-build --skip-helm
26
- --skip-apps Like --skip-setup but also do not run playwright install apps test, implies --skip-build --skip-setup
27
25
--skip-pw Do not run playwright tests
28
26
--cluster=name Run tests in an existing k8s cluster
29
27
--vendor=name Use a specific cluster vendor to run control-center tests options: [dd, kind, do] (default: kind)
@@ -95,8 +93,6 @@ checkArgs() {
95
93
--keep-apps) KEEPAPPS=true;;
96
94
--skip-build) SKIPBUILD=true;;
97
95
--skip-helm) OFFLINE=true; KEEPCC=true; SKIPHELM=true ;;
98
- --skip-setup) OFFLINE=true; KEEPCC=true; SKIPHELM=true; SKIPBUILD=true; SKIPSETUP=true;;
99
- --skip-apps) OFFLINE=true; KEEPCC=true; SKIPHELM=true; SKIPSETUP=true; SKIPBUILD=true; SKIPAPPS=true ;;
100
96
--pnpm) PNPM=" -Dpnpm.enable=true" ;;
101
97
--vite) VITE=true;;
102
98
--list* )
Original file line number Diff line number Diff line change @@ -261,9 +261,6 @@ runPwTests() {
261
261
[ " $2 " = local -a " $VENDOR " = do ] && R=$DO_REG_URL && S=" --secret=$DO_REGST "
262
262
263
263
for f in $CC_TESTS ; do
264
- [ -n " $SKIPSETUP " -a ` basename $f ` = " cc-setup.js" ] && continue
265
- [ -n " $SKIPAPPS " -a ` basename $f ` = " cc-install-apps.js" ] && continue
266
- [ -n " $KEEPAPPS " -a ` basename $f ` = " cc-remove-apps.js" ] && continue
267
264
[ " $CLUSTER " == " docker-desktop" ] || stopForwardIngress && forwardIngress $CC_NS || return 1
268
265
runPlaywrightTests " $PIT_SCR_FOLDER /its/$f " " " " $T " " control-center" \
269
266
--url=https://$CC_CONTROL --login=$CC_EMAIL --version=$CCVERSION \
You can’t perform that action at this time.
0 commit comments