Skip to content

Commit

Permalink
Disable Flaky Kudu integration test
Browse files Browse the repository at this point in the history
Disable the flaky tests which uses system properties and causes
further failures.
  • Loading branch information
Arunachalam Thirupathi committed Jul 5, 2022
1 parent e0f4249 commit 8a2ea29
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@
import static org.testng.Assert.assertEquals;
import static org.testng.Assert.fail;

// The tests set System property and it causes query failures
// as most likely TestNG 7 is reusing the JVM differently
// Tests setting system properties which affects future
// behaviors are unstable so disabling for now.
@Test (enabled = false)
public class TestKuduIntegrationSchemaNotExisting
extends AbstractTestQueryFramework
{
Expand Down Expand Up @@ -59,7 +64,7 @@ protected QueryRunner createQueryRunner()
}
}

@Test
@Test (enabled = false)
public void testCreateTableWithoutSchema()
{
try {
Expand Down

0 comments on commit 8a2ea29

Please sign in to comment.