Skip to content

Commit

Permalink
Ignore test conditions for cloud providers in ConnectionFipsIT and Co…
Browse files Browse the repository at this point in the history
…nnectionLatestIT
  • Loading branch information
sfc-gh-jmartinezramirez committed Jun 20, 2024
1 parent 462eb14 commit 038f26b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ public void testConnectUsingKeyPair() throws Exception {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGCP.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningOnGCP.class)
public void connectWithFipsAndQuery() throws SQLException {
try (Connection con = getConnection()) {
Statement statement = con.createStatement();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import net.snowflake.client.ConditionalIgnoreRule;
import net.snowflake.client.RunningNotOnAWS;
import net.snowflake.client.RunningOnGithubAction;
import net.snowflake.client.TestUtil;
import net.snowflake.client.category.TestCategoryConnection;
Expand Down Expand Up @@ -1171,7 +1170,7 @@ public void testReadOnly() throws Throwable {
}

@Test
@ConditionalIgnoreRule.ConditionalIgnore(condition = RunningNotOnAWS.class)
// @ConditionalIgnoreRule.ConditionalIgnore(condition = RunningNotOnAWS.class)
public void testDownloadStreamWithFileNotFoundException() throws SQLException {
try (Connection connection = getConnection();
Statement statement = connection.createStatement()) {
Expand Down

0 comments on commit 038f26b

Please sign in to comment.