File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -75,14 +75,14 @@ jobs:
75
75
run : |
76
76
# Skip ABS on 3.9, see https://github.com/zarr-developers/zarr-python/pull/1542/#issuecomment-1945557365 etc.
77
77
if [[ "${{ matrix.python-version }}" == '3.9' ]]; then
78
- echo "ZARR_TEST_ABS=0" >> "$GITHUB_ENV"
78
+ FILTER='-k "not test_s3"'
79
79
else
80
- echo "ZARR_TEST_ABS=1" >> "$GITHUB_ENV"
80
+ FILTER=''
81
81
fi
82
82
conda activate zarr-env
83
83
mkdir ~/blob_emulator
84
84
azurite -l ~/blob_emulator --debug debug.log 2>&1 > stdouterr.log &
85
- pytest --cov=zarr --cov-config=pyproject.toml --doctest-plus --cov-report xml --cov=./ --timeout=300
85
+ pytest --cov=zarr --cov-config=pyproject.toml --doctest-plus --cov-report xml --cov=./ --timeout=300 ${FILTER}
86
86
- uses : codecov/codecov-action@v3
87
87
with :
88
88
token : ${{ secrets.CODECOV_TOKEN }} # not required for public repos
Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ jobs:
47
47
run : |
48
48
# Skip ABS on 3.9, see https://github.com/zarr-developers/zarr-python/pull/1542/#issuecomment-1945557365 etc.
49
49
if [[ "${{ matrix.python-version }}" == '3.9' ]]; then
50
- echo "ZARR_TEST_ABS=0" >> "$GITHUB_ENV"
50
+ FILTER='-k "not test_s3"'
51
51
else
52
- echo "ZARR_TEST_ABS=1" >> "$GITHUB_ENV"
52
+ FILTER=''
53
53
fi
54
54
conda activate zarr-env
55
55
mkdir ~/blob_emulator
56
56
azurite -l ~/blob_emulator --debug debug.log 2>&1 > stdouterr.log &
57
- pytest -sv --timeout=300
57
+ pytest -sv --timeout=300 ${FILTER}
58
58
env :
59
59
ZARR_V3_EXPERIMENTAL_API : 1
60
60
ZARR_V3_SHARDING : 1
You can’t perform that action at this time.
0 commit comments