Skip to content

Commit b304de4

Browse files
committed
Enable extension tests on CI
This change enables Spatial extension tests on GitHub CI runs. With recent improvements in DuckDB engine vendoring process it is expected that JDBC builds can only be done with engine version for that the full set of prebuilt extensions is available, thus `INSTALL spatial` must work.
1 parent b7ebe43 commit b304de4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/test/java/org/duckdb/TestDuckDBJDBC.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3491,9 +3491,8 @@ public static void main(String[] args) throws Exception {
34913491
Class<?> clazz = Class.forName("org.duckdb." + arg1);
34923492
statusCode = runTests(new String[0], clazz);
34933493
} else {
3494-
// extension installation fails on CI, Spatial test is temporary disabled
34953494
statusCode = runTests(args, TestDuckDBJDBC.class, TestBatch.class, TestClosure.class,
3496-
TestExtensionTypes.class /*, TestSpatial.class */, TestParameterMetadata.class,
3495+
TestExtensionTypes.class, TestSpatial.class, TestParameterMetadata.class,
34973496
TestPrepare.class, TestResults.class, TestTimestamp.class);
34983497
}
34993498
System.exit(statusCode);

0 commit comments

Comments
 (0)