Skip to content

Commit d7d3fc8

Browse files
committed
Skip pyarrow test on Windows.
1 parent ab412bf commit d7d3fc8

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

tests/Sandpit/Exscientia/FreeEnergy/test_alchemical_free_energy.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
import os
33
import pathlib
44
import shutil
5+
import sys
56
import time
67

78
import numpy as np
@@ -129,6 +130,10 @@ def test_difference(self, gmx_complex, gmx_ligand):
129130
@pytest.mark.skipif(
130131
has_alchemlyb_parquet is False, reason="Requires alchemlyb > 2.1.0."
131132
)
133+
@pytest.mark.skipif(
134+
sys.platform == "win32",
135+
reason="pyarrow 24+ crashes on Windows (upstream bug).",
136+
)
132137
class TestAnalysePARQUET:
133138
@staticmethod
134139
@pytest.fixture(scope="class")

0 commit comments

Comments
 (0)