From c1ac698df0dbb2949dbfc6eec3d32b8ed8f3309b Mon Sep 17 00:00:00 2001 From: Francesc Alted Date: Wed, 2 Oct 2024 13:31:24 +0200 Subject: [PATCH] Simplify syntax --- .github/workflows/cibuildwheels.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/cibuildwheels.yml b/.github/workflows/cibuildwheels.yml index 6dc373b4..b3f29f9d 100644 --- a/.github/workflows/cibuildwheels.yml +++ b/.github/workflows/cibuildwheels.yml @@ -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