Skip to content

Commit

Permalink
Reenable arrow test by disabling autoloading
Browse files Browse the repository at this point in the history
Problem with CI was that this test is depenendent on whenever CI had finished or not uploading extensions
  • Loading branch information
carlopi committed Oct 9, 2023
1 parent 249288e commit 08816dc
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/arrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ import * as duckdb from '..';
import * as assert from 'assert';
import {ArrowArray} from "..";

describe.skip('arrow IPC API fails neatly when extension not loaded', function() {
describe('arrow IPC API fails neatly when extension not loaded', function() {
// Note: arrow IPC api requires the arrow extension to be loaded. The tests for this functionality reside in:
// https://github.com/duckdblabs/arrow
let db: duckdb.Database;
let conn;
before((done) => {
db = new duckdb.Database(':memory:', {"allow_unsigned_extensions": "true"}, () => {
done();
db.all('SET autoload_known_extensions=false;', () => {
done();
});
});
});

Expand Down

0 comments on commit 08816dc

Please sign in to comment.