Skip to content

Commit

Permalink
[MINOR] Disable falky integration test temporarily (#9823)
Browse files Browse the repository at this point in the history
  • Loading branch information
codope authored Oct 9, 2023
1 parent 66879cd commit 7ba65a6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,7 @@ public void clean() throws Exception {
}

@Test
@Disabled
public void testParquetDemo() throws Exception {
baseFileFormat = HoodieFileFormat.PARQUET;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
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;
Expand Down Expand Up @@ -91,6 +92,7 @@ public void testRunHoodieJavaAppOnNonPartitionedCOWTable() throws Exception {
* 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(),
Expand All @@ -105,6 +107,7 @@ public void testRunHoodieJavaAppOnSinglePartitionKeyMORTable() throws Exception
* 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(),
Expand Down

0 comments on commit 7ba65a6

Please sign in to comment.