Skip to content

Commit 88ecee5

Browse files
committed
Fix more issues on Win
1 parent d72fd2d commit 88ecee5

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

tests/ndarray/test_zeros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
(2**31 - 1,),
5050
(2**30,),
5151
None,
52-
np.float32,
52+
np.int8,
5353
{"codec": blosc2.Codec.LZ4, "clevel": 5, "nthreads": 2},
5454
None,
5555
False,

tests/test_tensor.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,7 @@ def test_save_tensor_tensorflow(size, dtype, urlpath):
188188
assert np.array_equal(nparray, np.asarray(tensor2))
189189

190190

191+
@pytest.mark.skipif(os.name == "nt", reason="Torch has issues with oldest-supported-numpy on Windows")
191192
@pytest.mark.parametrize(
192193
"size, dtype, urlpath",
193194
[

0 commit comments

Comments
 (0)