This is an automated email from the ASF dual-hosted git repository. codope pushed a commit to branch disable-tests in repository https://gitbox.apache.org/repos/asf/hudi.git
commit 0dd8e93174aa48530de95f395f440bfb3a260bc4 Author: Sagar Sumit <[email protected]> AuthorDate: Thu Oct 5 14:45:26 2023 +0530 [MINOR] Disable falky integration test temporarily --- .../src/test/java/org/apache/hudi/integ/ITTestHoodieDemo.java | 1 + .../src/test/java/org/apache/hudi/integ/ITTestHoodieSanity.java | 3 +++ 2 files changed, 4 insertions(+) diff --git a/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieDemo.java b/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieDemo.java index 1c683afade9..13eef863038 100644 --- a/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieDemo.java +++ b/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieDemo.java @@ -111,6 +111,7 @@ public class ITTestHoodieDemo extends ITTestBase { } @Test + @Disabled public void testParquetDemo() throws Exception { baseFileFormat = HoodieFileFormat.PARQUET; diff --git a/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieSanity.java b/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieSanity.java index 562c69b7221..79c59e0eee6 100644 --- a/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieSanity.java +++ b/hudi-integ-test/src/test/java/org/apache/hudi/integ/ITTestHoodieSanity.java @@ -23,6 +23,7 @@ import org.apache.hudi.common.table.timeline.HoodieActiveTimeline; import org.apache.hudi.common.util.Option; import org.apache.hudi.common.util.collection.Pair; +import org.junit.jupiter.api.Disabled; import org.junit.jupiter.api.Test; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.ValueSource; @@ -91,6 +92,7 @@ public class ITTestHoodieSanity extends ITTestBase { * and performs upserts on it. Hive integration and upsert functionality is checked by running a count query in hive * console. */ + @Disabled public void testRunHoodieJavaAppOnSinglePartitionKeyMORTable() throws Exception { String hiveTableName = "docker_hoodie_single_partition_key_mor_test_" + HoodieActiveTimeline.createNewInstantTime(); testRunHoodieJavaApp(hiveTableName, HoodieTableType.MERGE_ON_READ.name(), @@ -105,6 +107,7 @@ public class ITTestHoodieSanity extends ITTestBase { * data-set and performs upserts on it. Hive integration and upsert functionality is checked by running a count query * in hive console. */ + @Disabled public void testRunHoodieJavaAppOnMultiPartitionKeysMORTable(String command) throws Exception { String hiveTableName = "docker_hoodie_multi_partition_key_mor_test_" + HoodieActiveTimeline.createNewInstantTime(); testRunHoodieJavaApp(command, hiveTableName, HoodieTableType.MERGE_ON_READ.name(),
