Skip to content

Commit

Permalink
TODO: Make parallel test work.
Browse files Browse the repository at this point in the history
  • Loading branch information
viferga committed Jan 14, 2025
1 parent 2eb7679 commit 4db1313
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions test/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,11 @@ function test_nodejs_app() {
# Run package tests
echo "Running integration tests for package deployment."

run_tests "nodejs-base-app" test_nodejs_app "true"
run_tests "python-base-app" test_python_base_app "true"
run_tests "python-dependency-app" test_python_dependency_app "true"
run_tests "nodejs-dependency-app" test_nodejs_dependency_app "true"
# TODO: Parallel tests (uncomment true for deletion)
run_tests "nodejs-base-app" test_nodejs_app # "true"
run_tests "python-base-app" test_python_base_app # "true"
run_tests "python-dependency-app" test_python_dependency_app # "true"
run_tests "nodejs-dependency-app" test_nodejs_dependency_app # "true"

echo "Integration tests for package deployment passed without errors."

Expand Down Expand Up @@ -313,9 +314,11 @@ function test_simultaneous_deploy() {
done
}

# TODO: Parallel tests

# Run concurrent tests
echo "Running simultaneous deployments test."
# echo "Running simultaneous deployments test."

test_simultaneous_deploy
# test_simultaneous_deploy

echo "Simultaneous deployments test tests completed."
# echo "Simultaneous deployments test tests completed."

0 comments on commit 4db1313

Please sign in to comment.