From b3935eef1e5bafac9f465018378c53f63abaab84 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Fri, 14 Jun 2024 12:48:02 +0000 Subject: [PATCH 1/2] fix e2e test for hns bucket --- tools/integration_tests/operations/operations_test.go | 2 +- tools/integration_tests/run_e2e_tests.sh | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/tools/integration_tests/operations/operations_test.go b/tools/integration_tests/operations/operations_test.go index 1d2f8b9a0e..9c58b3b6d9 100644 --- a/tools/integration_tests/operations/operations_test.go +++ b/tools/integration_tests/operations/operations_test.go @@ -158,7 +158,7 @@ func TestMain(m *testing.M) { // Create storage client before running tests. ctx := context.Background() var storageClient *storage.Client - closeStorageClient := client.CreateStorageClientWithTimeOut(&ctx, &storageClient, time.Minute*15) + closeStorageClient := client.CreateStorageClientWithTimeOut(&ctx, &storageClient, time.Minute*40) defer func() { err := closeStorageClient() if err != nil { diff --git a/tools/integration_tests/run_e2e_tests.sh b/tools/integration_tests/run_e2e_tests.sh index 37fefb140d..d8d18409c7 100755 --- a/tools/integration_tests/run_e2e_tests.sh +++ b/tools/integration_tests/run_e2e_tests.sh @@ -233,9 +233,6 @@ function run_e2e_tests_for_hns_bucket(){ echo "Running tests for HNS bucket" run_non_parallel_tests TEST_DIR_HNS_GROUP "$hns_bucket_name" - non_parallel_tests_pid_hns_group=$! - - wait $non_parallel_tests_pid_hns_group non_parallel_tests_hns_group_exit_code=$? hns_buckets=("$hns_bucket_name") From 8627c6af4d5c9a1de2106efbbbea194af0abdf99 Mon Sep 17 00:00:00 2001 From: Tulsi Shah Date: Sat, 15 Jun 2024 07:14:00 +0000 Subject: [PATCH 2/2] trigger e2e tests