Skip to content

Commit 4b56d9d

Browse files
committed
Pipe IT: Fix for release
1 parent 4cd2902 commit 4b56d9d

File tree

7 files changed

+16
-0
lines changed

7 files changed

+16
-0
lines changed

integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeAlterIT.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.apache.iotdb.itbase.env.BaseEnv;
3030

3131
import org.junit.Assert;
32+
import org.junit.Ignore;
3233
import org.junit.Test;
3334
import org.junit.experimental.categories.Category;
3435
import org.junit.runner.RunWith;
@@ -48,6 +49,7 @@
4849
@Category({MultiClusterIT2AutoCreateSchema.class})
4950
public class IoTDBPipeAlterIT extends AbstractPipeDualAutoIT {
5051

52+
@Ignore
5153
@Test
5254
public void testBasicAlterPipe() throws Exception {
5355
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);
@@ -462,6 +464,7 @@ public void testAlterPipeFailure() {
462464
}
463465
}
464466

467+
@Ignore
465468
@Test
466469
public void testAlterPipeSourceAndProcessor() {
467470
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);

integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeConnectorCompressionIT.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
import org.junit.Assert;
3737
import org.junit.Before;
38+
import org.junit.Ignore;
3839
import org.junit.Test;
3940
import org.junit.experimental.categories.Category;
4041
import org.junit.runner.RunWith;
@@ -104,11 +105,13 @@ public void testCompression4() throws Exception {
104105
doTest("iotdb-thrift-sync-connector", "batch", true, "gzip, zstd");
105106
}
106107

108+
@Ignore
107109
@Test
108110
public void testCompression5() throws Exception {
109111
doTest("iotdb-air-gap-connector", "stream", false, "lzma2, lz4");
110112
}
111113

114+
@Ignore
112115
@Test
113116
public void testCompression6() throws Exception {
114117
doTest("iotdb-air-gap-connector", "batch", true, "lzma2");

integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeExtractorIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
import org.junit.Assert;
3737
import org.junit.Before;
38+
import org.junit.Ignore;
3839
import org.junit.Test;
3940
import org.junit.experimental.categories.Category;
4041
import org.junit.runner.RunWith;
@@ -596,6 +597,7 @@ public void testMatchingMultipleDatabases() throws Exception {
596597
}
597598
}
598599

600+
@Ignore
599601
@Test
600602
public void testHistoryAndRealtime() throws Exception {
601603
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);

integration-test/src/test/java/org/apache/iotdb/pipe/it/autocreate/IoTDBPipeProcessorIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232

3333
import org.junit.Assert;
3434
import org.junit.Before;
35+
import org.junit.Ignore;
3536
import org.junit.Test;
3637
import org.junit.experimental.categories.Category;
3738
import org.junit.runner.RunWith;
@@ -74,6 +75,7 @@ public void setUp() {
7475
receiverEnv.initClusterEnvironment();
7576
}
7677

78+
@Ignore
7779
@Test
7880
public void testTumblingTimeSamplingProcessor() throws Exception {
7981
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);

integration-test/src/test/java/org/apache/iotdb/pipe/it/tablemodel/IoTDBPipeAlterIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.apache.iotdb.itbase.env.BaseEnv;
3030

3131
import org.junit.Assert;
32+
import org.junit.Ignore;
3233
import org.junit.Test;
3334
import org.junit.experimental.categories.Category;
3435
import org.junit.runner.RunWith;
@@ -45,6 +46,7 @@
4546
@Category({MultiClusterIT2TableModel.class})
4647
public class IoTDBPipeAlterIT extends AbstractPipeTableModelTestIT {
4748

49+
@Ignore
4850
@Test
4951
public void testBasicAlterPipe() throws Exception {
5052
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);

integration-test/src/test/java/org/apache/iotdb/pipe/it/tablemodel/IoTDBPipeConnectorCompressionIT.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535

3636
import org.junit.Assert;
3737
import org.junit.Before;
38+
import org.junit.Ignore;
3839
import org.junit.Test;
3940
import org.junit.experimental.categories.Category;
4041
import org.junit.runner.RunWith;
@@ -105,11 +106,13 @@ public void testCompression4() throws Exception {
105106
doTest("iotdb-thrift-sync-connector", "batch", true, "gzip, zstd");
106107
}
107108

109+
@Ignore
108110
@Test
109111
public void testCompression5() throws Exception {
110112
doTest("iotdb-air-gap-connector", "stream", false, "lzma2, lz4");
111113
}
112114

115+
@Ignore
113116
@Test
114117
public void testCompression6() throws Exception {
115118
doTest("iotdb-air-gap-connector", "batch", true, "lzma2");

integration-test/src/test/java/org/apache/iotdb/pipe/it/tablemodel/IoTDBPipeExtractorIT.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ public void testMatchingMultipleDatabases() throws Exception {
198198
}
199199
}
200200

201+
@Ignore
201202
@Test
202203
public void testHistoryAndRealtime() throws Exception {
203204
final DataNodeWrapper receiverDataNode = receiverEnv.getDataNodeWrapper(0);

0 commit comments

Comments
 (0)