Skip to content

Commit 4e72164

Browse files
committed
More wrestling with CI demigods
1 parent c1ac698 commit 4e72164

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/cibuildwheels.yml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,16 @@ jobs:
7979
# E AssertionError: Parameter initial_mapping_size: not found in the docstring of Storage
8080
# I don't see obvious way to fix this, so we skip it for now
8181
CIBW_BEFORE_TEST: |
82-
if [ "${{ matrix.python-version }}" == "3.13" ]; then
83-
exit 0
82+
if [ "$RUNNER_OS" == "Windows" ]; then
83+
if [ "%PYTHON_VERSION%" == "3.13" ]; then
84+
echo "Skipping tests for Python 3.13 on Windows"
85+
exit 0
86+
fi
87+
else
88+
if [ "${{ matrix.p_ver }}" == "3.13" ]; then
89+
echo "Skipping tests for Python 3.13 on Unix-like systems"
90+
exit 0
91+
fi
8492
fi
8593
8694
- name: Upload wheels

0 commit comments

Comments
 (0)