Skip to content

Commit

Permalink
disable flaky test
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-tzhang committed Nov 2, 2023
1 parent 97d7854 commit 3969c7b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/test/java/net/snowflake/ingest/SimpleIngestIT.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import net.snowflake.ingest.utils.StagedFileWrapper;
import org.junit.After;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;

/** Example ingest sdk integration test */
Expand Down Expand Up @@ -123,6 +124,7 @@ public void afterAll() {

/** ingest test example ingest a simple file and check load history. */
@Test
@Ignore // SNOW-957347: re-enable after fix
public void testSimpleIngest() throws Exception {
// put
TestUtils.executeQuery("put file://" + testFilePath + " @" + stageName);
Expand Down Expand Up @@ -176,7 +178,8 @@ public void testSimpleIngestWithPattern() throws Exception {
}

private void getHistoryAndAssertLoad(SimpleIngestManager manager, String test_file_name_2)
throws InterruptedException, java.util.concurrent.ExecutionException,
throws InterruptedException,
java.util.concurrent.ExecutionException,
java.util.concurrent.TimeoutException {
// keeps track of whether we've loaded the file
boolean loaded = false;
Expand Down Expand Up @@ -302,6 +305,7 @@ public void testUserAgentSuffixForInsertFileAPI() throws Exception {
* <p>Creates the thread only two times since the manager was closed only once.
*/
@Test
@Ignore // SNOW-957347: re-enable after fix
public void testMultipleSimpleIngestManagers() throws Exception {
// put
TestUtils.executeQuery("put file://" + testFilePath + " @" + stageName);
Expand Down

0 comments on commit 3969c7b

Please sign in to comment.