From a58b8cb6a52ee4e154a5baf246f1d1e14b4a4248 Mon Sep 17 00:00:00 2001 From: Will Smith Date: Wed, 28 Aug 2024 11:12:57 -0700 Subject: [PATCH] Temporarily disabling tests: `Test_Storage` and `Test_PersistentVolume` (#7854) # Description * Temporarily disabling tests due to failures ## Type of change - This pull request is a minor refactor, code cleanup, test improvement, or other maintenance task and doesn't change the functionality of Radius (issue link optional). Signed-off-by: willdavsmith --- .../corerp/cloud/resources/persistent_volume_test.go | 1 + test/functional-portable/corerp/cloud/resources/storage_test.go | 1 + 2 files changed, 2 insertions(+) diff --git a/test/functional-portable/corerp/cloud/resources/persistent_volume_test.go b/test/functional-portable/corerp/cloud/resources/persistent_volume_test.go index 9722ffa6b3..5c97741fe6 100644 --- a/test/functional-portable/corerp/cloud/resources/persistent_volume_test.go +++ b/test/functional-portable/corerp/cloud/resources/persistent_volume_test.go @@ -26,6 +26,7 @@ import ( ) func Test_PersistentVolume(t *testing.T) { + t.Skip("https://github.com/radius-project/radius/issues/7853") template := "testdata/corerp-resources-volume-azure-keyvault.bicep" name := "corerp-resources-volume-azure-keyvault" appNamespace := "corerp-resources-volume-azure-keyvault-app" diff --git a/test/functional-portable/corerp/cloud/resources/storage_test.go b/test/functional-portable/corerp/cloud/resources/storage_test.go index fa1cf3b4ee..b8f945288e 100644 --- a/test/functional-portable/corerp/cloud/resources/storage_test.go +++ b/test/functional-portable/corerp/cloud/resources/storage_test.go @@ -27,6 +27,7 @@ import ( // Test_Storage tests if a container on an Azure Storage Account can be created and then deleted by the magpiego with the workload identity. func Test_Storage(t *testing.T) { + t.Skip("https://github.com/radius-project/radius/issues/7853") template := "testdata/corerp-resources-container-workload.bicep" name := "corerp-resources-container-workload" appNamespace := "azstorage-workload-app"