Skip to content

Commit 08a003e

Browse files
Skip some tests on mac
Skip du tests Disable progress tests on mac Try to skip 3.10 too Another go
1 parent c00b276 commit 08a003e

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ jobs:
2828
# Just run macos tests on one Python version
2929
- os: macos-13
3030
python-version: "3.9"
31+
- os: macos-13
32+
python-version: "3.10"
3133
steps:
3234
- uses: actions/checkout@v4
3335
- name: Set up Python ${{ matrix.python-version }}

tests/test_core.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import sys
2+
13
import numpy as np
24
import pytest
35
import zarr
@@ -54,6 +56,7 @@ def test_bad_min_max(self, min_value, max_value):
5456
core.min_int_dtype(min_value, max_value)
5557

5658

59+
@pytest.mark.skipif(sys.platform == "darwin", reason="Issue #75")
5760
class TestParallelWorkManager:
5861
@pytest.mark.parametrize("total", [1, 10, 2**63])
5962
@pytest.mark.parametrize("workers", [0, 1])
@@ -181,6 +184,7 @@ def test_5_chunk_1(self, n, expected):
181184
assert result == expected
182185

183186

187+
@pytest.mark.skipif(sys.platform != "linux", reason="Only valid on Linux")
184188
@pytest.mark.parametrize(
185189
("path", "expected"),
186190
[

0 commit comments

Comments
 (0)