Skip to content

Commit

Permalink
fix disablings
Browse files Browse the repository at this point in the history
  • Loading branch information
edgao committed Dec 20, 2024
1 parent bc8aff0 commit cea687c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,4 @@ class MockBasicFunctionalityIntegrationTest :
override fun testBasicTypes() {
super.testBasicTypes()
}

@Test @Disabled override fun testBasicWriteFile() {}
}
Original file line number Diff line number Diff line change
Expand Up @@ -41,16 +41,14 @@ abstract class IcebergV2WriteTest(
nullEqualsUnset = true,
) {
@Test
@Disabled(
"Expected because we seem to be mapping timestamps to long when we should be mapping them to an OffsetDateTime"
)
@Disabled("bad values handling for timestamps is currently broken")
override fun testBasicTypes() {
super.testBasicTypes()
}

@Test
@Disabled(
"Expected because we seem to be mapping timestamps to long when we should be mapping them to an OffsetDateTime"
"This is currently hanging forever and we should look into why https://github.com/airbytehq/airbyte-internal-issues/issues/11162"
)
override fun testInterruptedTruncateWithPriorData() {
super.testInterruptedTruncateWithPriorData()
Expand All @@ -63,30 +61,16 @@ abstract class IcebergV2WriteTest(
}

@Test
// @Disabled
override fun testContainerTypes() {
super.testContainerTypes()
}

@Test
@Disabled(
"Expected because we seem to be mapping timestamps to long when we should be mapping them to an OffsetDateTime"
)
@Disabled("This is currently hanging forever and we should look into why")
override fun resumeAfterCancelledTruncate() {
super.resumeAfterCancelledTruncate()
}

@Test
@Disabled("This is expected")
@Disabled("This is expected (dest-iceberg-v2 doesn't yet support schema evolution)")
override fun testAppendSchemaEvolution() {
super.testAppendSchemaEvolution()
}

@Test
// @Disabled
override fun testUnions() {
super.testUnions()
}
}

class IcebergGlueWriteTest :
Expand All @@ -97,17 +81,7 @@ class IcebergGlueWriteTest :
IcebergV2TestUtil.parseConfig(IcebergV2TestUtil.GLUE_CONFIG_PATH)
)
),
) {
@Test
override fun testContainerTypes() {
super.testContainerTypes()
}

@Test
override fun testUnions() {
super.testUnions()
}
}
)

@Disabled(
"This is currently disabled until we are able to make it run via airbyte-ci. It works as expected locally"
Expand Down

0 comments on commit cea687c

Please sign in to comment.