Skip to content

Commit

Permalink
Merge pull request #79 from carlopi/main
Browse files Browse the repository at this point in the history
Skip arrow test on missing arrow on Windows
  • Loading branch information
Mytherin authored Apr 23, 2024
2 parents 2ab5f7a + f1c77e0 commit 9c06b60
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/arrow.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import * as duckdb from '..';
import * as assert from 'assert';
import {ArrowArray} from "..";

if (process?.platform != 'win32') {
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
Expand Down Expand Up @@ -53,3 +54,4 @@ describe('arrow IPC API fails neatly when extension not loaded', function() {
});
});
});
}

0 comments on commit 9c06b60

Please sign in to comment.