From f1c77e0870ae3fc1b4c9bf9754c24ca6f607ef91 Mon Sep 17 00:00:00 2001 From: Carlo Piovesan Date: Mon, 22 Apr 2024 12:29:21 +0200 Subject: [PATCH] Skip arrow test on missing arrow on Windows There are some non-deterministic failures connected to this --- test/arrow.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/arrow.test.ts b/test/arrow.test.ts index cf744982..c7519310 100644 --- a/test/arrow.test.ts +++ b/test/arrow.test.ts @@ -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 @@ -53,3 +54,4 @@ describe('arrow IPC API fails neatly when extension not loaded', function() { }); }); }); +}