From a888620c9a9bbc34730d7b96536a2399fa9aa74e Mon Sep 17 00:00:00 2001 From: Jakub Michalak Date: Wed, 6 Nov 2024 16:25:24 +0100 Subject: [PATCH] Skip tests with incompatible config --- pkg/provider/provider_acceptance_test.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/provider/provider_acceptance_test.go b/pkg/provider/provider_acceptance_test.go index 2c987bbc60..61650a0b97 100644 --- a/pkg/provider/provider_acceptance_test.go +++ b/pkg/provider/provider_acceptance_test.go @@ -165,6 +165,8 @@ func TestAcc_Provider_configureClientOnceSwitching(t *testing.T) { } func TestAcc_Provider_tomlConfig(t *testing.T) { + // TODO(SNOW-1752038): unskip + t.Skip("Skip because this test needs a TOML config incompatible with older versions, causing tests with ExternalProvider to fail.") t.Setenv(string(testenvs.ConfigureClientOnce), "") user := acc.DefaultConfig(t).User @@ -236,6 +238,8 @@ func TestAcc_Provider_tomlConfig(t *testing.T) { } func TestAcc_Provider_envConfig(t *testing.T) { + // TODO(SNOW-1752038): unskip + t.Skip("Skip because this test needs a TOML config incompatible with older versions, causing tests with ExternalProvider to fail.") t.Setenv(string(testenvs.ConfigureClientOnce), "") user := acc.DefaultConfig(t).User @@ -346,6 +350,8 @@ func TestAcc_Provider_envConfig(t *testing.T) { } func TestAcc_Provider_tfConfig(t *testing.T) { + // TODO(SNOW-1752038): unskip + t.Skip("Skip because this test needs a TOML config incompatible with older versions, causing tests with ExternalProvider to fail.") t.Setenv(string(testenvs.ConfigureClientOnce), "") user := acc.DefaultConfig(t).User