Remove set -e from validation scripts to continue on test failures

This commit is contained in:
cschantz
2025-11-20 15:38:46 -05:00
parent 8cec01b646
commit c855e56451
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@
# Run this on a real InterWorx server to validate our refactoring # Run this on a real InterWorx server to validate our refactoring
################################################################################ ################################################################################
set -e # Note: NOT using 'set -e' so script continues even if individual tests fail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
RESULTS_FILE="/tmp/interworx-validation-results.txt" RESULTS_FILE="/tmp/interworx-validation-results.txt"
+1 -1
View File
@@ -6,7 +6,7 @@
# Run this on a real Plesk server to validate our refactoring # Run this on a real Plesk server to validate our refactoring
################################################################################ ################################################################################
set -e # Note: NOT using 'set -e' so script continues even if individual tests fail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
RESULTS_FILE="/tmp/plesk-validation-results.txt" RESULTS_FILE="/tmp/plesk-validation-results.txt"