Skip to content

Commit

Permalink
More wrestling with CI demigods
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Oct 2, 2024
1 parent c1ac698 commit 4e72164
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,16 @@ jobs:
# E AssertionError: Parameter initial_mapping_size: not found in the docstring of Storage
# I don't see obvious way to fix this, so we skip it for now
CIBW_BEFORE_TEST: |
if [ "${{ matrix.python-version }}" == "3.13" ]; then
exit 0
if [ "$RUNNER_OS" == "Windows" ]; then
if [ "%PYTHON_VERSION%" == "3.13" ]; then
echo "Skipping tests for Python 3.13 on Windows"
exit 0
fi
else
if [ "${{ matrix.p_ver }}" == "3.13" ]; then
echo "Skipping tests for Python 3.13 on Unix-like systems"
exit 0
fi
fi
- name: Upload wheels
Expand Down

0 comments on commit 4e72164

Please sign in to comment.