From 140bc1a96a33bde9a11d2a850289cf6683fb3599 Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Sun, 27 Jul 2025 06:12:42 -0400 Subject: [PATCH] tests: mark and add skips (#2524) * tests: mark and add skips Signed-off-by: Henry Schreiner * fix comment --------- Signed-off-by: Henry Schreiner Co-authored-by: Matthieu Darbois --- .github/workflows/test.yml | 8 +++++--- pyproject.toml | 3 +++ test/test_android.py | 3 +++ test/test_ios.py | 6 ++++++ test/test_pyodide.py | 7 +++++++ 5 files changed, 24 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c2ec74b9..a95cf268 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -51,6 +51,7 @@ jobs: needs: lint runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-latest, ubuntu-24.04-arm, windows-latest, windows-11-arm, macos-13, macos-15] python_version: ['3.13'] @@ -97,6 +98,7 @@ jobs: uv sync --no-dev --group test - uses: joerick/pr-labels-action@v1.0.9 + - name: Set CIBW_ENABLE shell: bash run: | @@ -134,16 +136,16 @@ jobs: with: package-dir: sample_proj output-dir: wheelhouse_only - only: cp312-${{ runner.os == 'Linux' && (runner.arch == 'ARM64' && 'manylinux_aarch64' || 'manylinux_x86_64') || (runner.os == 'Windows' && 'win_amd64' || 'macosx_x86_64') }} + only: cp313-${{ runner.os == 'Linux' && (runner.arch == 'ARM64' && 'manylinux_aarch64' || 'manylinux_x86_64') || (runner.os == 'Windows' && 'win_amd64' || 'macosx_x86_64') }} - name: Create custom configuration file shell: bash run: | cat > sample_proj/cibw.toml <