Skip to content

Commit

Permalink
added --no-module flag to run subset of operator tests that don't inc…
Browse files Browse the repository at this point in the history
…lude modules
  • Loading branch information
arunbalaji-dell committed Sep 3, 2024
1 parent fa3ae89 commit 74378e2
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions tests/e2e/run-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ function usage() {
echo " --auth-proxy use to run e2e auth-proxy suite"
echo " --resiliency use to run e2e resiliency suite"
echo " --app-mobility use to run e2e application-mobility suite"
echo " --no-modules use to run e2e suite without any modules"
echo " --pflex use to run e2e powerflex suite"
echo " --pscale use to run e2e powerscale suite"
echo " --pstore use to run e2e powerstore suite"
Expand Down Expand Up @@ -183,6 +184,14 @@ while getopts ":h-:" optchar; do
export APPLICATIONMOBILITY=true ;;
pflex)
export POWERFLEX=true ;;
no-modules)
export AUTHORIZATION=false
export AUTHORIZATIONPROXYSERVER=false
export REPLICATION=false
export OBSERVABILITY=false
export RESILIENCY=false
export APPLICATIONMOBILITY=false
;;
pscale)
export POWERSCALE=true ;;
pstore)
Expand Down Expand Up @@ -253,10 +262,12 @@ getArrayInfo
checkForScenariosFile
checkForCertCsi
checkForKaravictl
if [ -v APPLICATIONMOBILITY ]; then
if [[ $APPLICATIONMOBILITY == "true" ]]; then
echo "Checking for dellctl - APPLICATIONMOBILITY"
checkForDellctl
fi
if [ -v AUTHORIZATIONPROXYSERVER ]; then
if [[ $AUTHORIZATIONPROXYSERVER == "true" ]]; then
echo "Checking for dellctl - AUTHORIZATIONPROXYSERVER"
checkForDellctl
fi
checkForGinkgo
Expand Down

0 comments on commit 74378e2

Please sign in to comment.