From b0d48c849a0b2033ce82a8eefe3ce35529aa8164 Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia <7854099+viferga@users.noreply.github.com> Date: Thu, 16 Jan 2025 14:49:50 -0500 Subject: [PATCH] Update test.sh --- test/test.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/test/test.sh b/test/test.sh index e8803f2..6e28cd7 100755 --- a/test/test.sh +++ b/test/test.sh @@ -317,14 +317,14 @@ function test_simultaneous_deploy() { } # Run concurrent tests -echo "Running simultaneous deployments test." +if [[ "${TEST_FAAS_STARTUP_DEPLOY}" == "true" ]]; then + echo "Running simultaneous deployments test." -test_simultaneous_deploy + test_simultaneous_deploy -echo "Simultaneous deployments test tests completed." + echo "Simultaneous deployments test tests completed." -# Delete all deployed apps after tests complete -if [[ "${TEST_FAAS_STARTUP_DEPLOY}" == "true" ]]; then + # Delete all deployed apps after tests complete for i in "${!DEPLOYED_APPS[@]}"; do delete_functionality "${DEPLOYED_APPS[$i]}" "${DEPLOYED_PREFIXES[$i]}" done