Skip to content

Commit

Permalink
Ignore GCP test on Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-astachowski committed Nov 6, 2024
1 parent cabb3af commit b5f811c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/test/java/net/snowflake/client/jdbc/GCPLargeResult.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,14 @@
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import net.snowflake.client.annotations.DontRunOnGithubActions;
import net.snowflake.client.category.TestTags;
import net.snowflake.client.providers.SimpleFormatProvider;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.ArgumentsSource;

@Tag(TestTags.RESULT_SET)
public class GCPLargeResult extends BaseJDBCTest {

Connection init(String queryResultFormat) throws SQLException {
Expand All @@ -27,6 +31,7 @@ Connection init(String queryResultFormat) throws SQLException {

@ParameterizedTest
@ArgumentsSource(SimpleFormatProvider.class)
@DontRunOnGithubActions
public void testLargeResultSetGCP(String queryResultFormat) throws Throwable {
try (Connection con = init(queryResultFormat);
PreparedStatement stmt =
Expand Down

0 comments on commit b5f811c

Please sign in to comment.