Skip to content

Commit b5b7181

Browse files
committed
Filter s3 rather than ABS
1 parent 43e6aaf commit b5b7181

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,7 @@ jobs:
7575
run: |
7676
# Skip ABS on 3.9, see https://github.com/zarr-developers/zarr-python/pull/1542/#issuecomment-1945557365 etc.
7777
if [[ "${{ matrix.python-version }}" == '3.9' ]]; then
78-
echo "ZARR_TEST_ABS=0" >> "$GITHUB_ENV"
79-
else
80-
echo "ZARR_TEST_ABS=1" >> "$GITHUB_ENV"
78+
PYTEST_ADDOPTS="-k 'not test_s3'"
8179
fi
8280
conda activate zarr-env
8381
mkdir ~/blob_emulator

.github/workflows/windows-testing.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,7 @@ jobs:
4747
run: |
4848
# Skip ABS on 3.9, see https://github.com/zarr-developers/zarr-python/pull/1542/#issuecomment-1945557365 etc.
4949
if [[ "${{ matrix.python-version }}" == '3.9' ]]; then
50-
echo "ZARR_TEST_ABS=0" >> "$GITHUB_ENV"
51-
else
52-
echo "ZARR_TEST_ABS=1" >> "$GITHUB_ENV"
50+
PYTEST_ADDOPTS="-k 'not test_s3'"
5351
fi
5452
conda activate zarr-env
5553
mkdir ~/blob_emulator

0 commit comments

Comments
 (0)