We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6b172c6 commit 6580ee5Copy full SHA for 6580ee5
1 file changed
tests/test_highlevel.py
@@ -2,6 +2,7 @@
2
import io
3
import itertools
4
import pathlib
5
+import sys
6
7
import numpy as np
8
import pytest
@@ -212,6 +213,8 @@ def test_read_memory():
212
213
214
215
def test_read_stream():
216
+ if sys.platform.startswith("win"):
217
+ pytest.skip("Test disabled on Windows")
218
buffer = io.BytesIO()
219
with eccodes.FileReader(TEST_GRIB_DATA2) as reader1:
220
written = []
0 commit comments