Skip to content

Commit 667e6e1

Browse files
authored
Merge pull request numpy#26706 from HaoZeke/fixWindows
TST: Skip an f2py module test on Windows
2 parents 9c5ff9e + a7dd51e commit 667e6e1

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

numpy/f2py/tests/test_regression.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import os
22
import pytest
3+
import platform
34

45
import numpy as np
56
import numpy.testing as npt
@@ -123,6 +124,7 @@ def test_gh26623():
123124

124125

125126
@pytest.mark.slow
127+
@pytest.mark.skipif(platform.system() not in ['Linux', 'Darwin'], reason='Unsupported on this platform for now')
126128
def test_gh25784():
127129
# Compile dubious file using passed flags
128130
try:

0 commit comments

Comments
 (0)