From ee5c38d0b1d20ee1cfed737f9db7ce4d4ee7413c Mon Sep 17 00:00:00 2001 From: rfitzger Date: Fri, 27 Oct 2023 08:47:39 -0600 Subject: [PATCH] remove tests from python release action --- .github/workflows/python-release.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-release.yaml b/.github/workflows/python-release.yaml index a2fe14f4..3cf0030e 100644 --- a/.github/workflows/python-release.yaml +++ b/.github/workflows/python-release.yaml @@ -58,19 +58,20 @@ jobs: run: | pip install -U maturin maturin build --sdist --out dist/ + - name: build ${{ matrix.platform || matrix.os }} binaries run: cibuildwheel --output-dir dist env: CIBW_BUILD: "cp3${{ matrix.python-version }}-*" CIBW_SKIP: "*-win32 *-musllinux* *i686 *ppc64le *s390x *aarch64" CIBW_PLATFORM: ${{ matrix.platform || matrix.os }} - CIBW_TEST_REQUIRES: "pytest" - CIBW_TEST_COMMAND: "pytest {project}/tests -s" + # CIBW_TEST_REQUIRES: "pytest" + # CIBW_TEST_COMMAND: "pytest {project}/tests -s" CIBW_ENVIRONMENT: 'PATH="$HOME/.cargo/bin:$PATH"' CIBW_ENVIRONMENT_WINDOWS: 'PATH="$UserProfile\.cargo\bin;$PATH"' CIBW_ARCHS_MACOS: 'universal2' # see https://cibuildwheel.readthedocs.io/en/stable/faq/#universal2 - CIBW_TEST_SKIP: '*_universal2:arm64' + # CIBW_TEST_SKIP: '*_universal2:arm64' CIBW_BEFORE_BUILD: > pip install -U maturin && rustup default nightly &&