Skip to content

Commit

Permalink
Simplify syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
FrancescAlted committed Oct 2, 2024
1 parent 33d67b0 commit c1ac698
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/cibuildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,8 +79,7 @@ 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
echo "Skipping tests for Python 3.13"
if [ "${{ matrix.python-version }}" == "3.13" ]; then
exit 0
fi
Expand Down

0 comments on commit c1ac698

Please sign in to comment.