Skip to content

Commit

Permalink
disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bzabek committed Dec 2, 2024
1 parent f918bd0 commit 7ff742a
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private static Stream<Arguments> prepareData() {

/** Verify a scenario when structure is enriched with another field. */
@Test
// @Disabled
@Disabled
public void alterStructure_noSchema() throws Exception {
// k1, k2
String testStruct1 = "{ \"testStruct\": { \"k1\" : 1, \"k2\" : 2 } }";
Expand Down Expand Up @@ -201,7 +201,7 @@ private void assertRecordsInTable() {
}

@Test
// @Disabled
@Disabled
public void testComplexRecordEvolution_withSchema() throws Exception {
insertWithRetry(complexJsonWithSchemaExample, 0, true);
waitForOffset(1);
Expand Down Expand Up @@ -240,7 +240,7 @@ public void testComplexRecordEvolution_withSchema() throws Exception {
}

@Test
// @Disabled
@Disabled
public void testComplexRecordEvolution() throws Exception {
insertWithRetry(complexJsonPayloadExample, 0, false);
waitForOffset(1);
Expand Down Expand Up @@ -279,7 +279,7 @@ public void testComplexRecordEvolution() throws Exception {
/** Test just for a scenario when we see a record for the first time. */
@ParameterizedTest
@MethodSource("schemasAndPayloads_brandNewColumns")
// @Disabled
@Disabled
public void addBrandNewColumns_withSchema(
String payloadWithSchema, String expectedColumnName, String expectedType) throws Exception {
// when
Expand Down Expand Up @@ -310,7 +310,7 @@ private static Stream<Arguments> schemasAndPayloads_brandNewColumns() {

@ParameterizedTest
@MethodSource("primitiveEvolutionDataSource")
// @Disabled
@Disabled
public void testEvolutionOfPrimitives_withSchema(
String singleBooleanField,
String booleanAndInt,
Expand Down Expand Up @@ -399,7 +399,7 @@ private static Stream<Arguments> primitiveEvolutionDataSource() {

@ParameterizedTest
@MethodSource("testEvolutionOfComplexTypes_dataSource")
// @Disabled
@Disabled
public void testEvolutionOfComplexTypes_withSchema(
String objectVarchar,
String objectWithNestedObject,
Expand Down

0 comments on commit 7ff742a

Please sign in to comment.