From dbbb8f5cc8ceacac03a2af933d5d8566219d8ba7 Mon Sep 17 00:00:00 2001 From: Yangyang Li Date: Fri, 11 Oct 2024 03:05:10 -0500 Subject: [PATCH] chore: Remove redundant pytest job configurations --- .github/workflows/release-python-cli.yml | 31 ------------------------ 1 file changed, 31 deletions(-) diff --git a/.github/workflows/release-python-cli.yml b/.github/workflows/release-python-cli.yml index ebe7db5..0c30844 100644 --- a/.github/workflows/release-python-cli.yml +++ b/.github/workflows/release-python-cli.yml @@ -112,37 +112,6 @@ jobs: with: name: wheels-musllinux-${{ matrix.platform.target }} path: ./py_cli/dist - - name: pytest - if: ${{ startsWith(matrix.platform.target, 'x86_64') }} - uses: addnab/docker-run-action@v3 - with: - image: alpine:latest - options: -v ${{ github.workspace }}:/io -w /io - run: | - set -e - apk add py3-pip py3-virtualenv - python3 -m virtualenv .venv - source .venv/bin/activate - cd py_cli - pip install deepchopper-cli --no-index --find-links dist --force-reinstall - deepchopper-chop --help - - name: pytest - if: ${{ !startsWith(matrix.platform.target, 'x86') }} - uses: uraimo/run-on-arch-action@v2 - with: - arch: ${{ matrix.platform.target }} - distro: alpine_latest - githubToken: ${{ github.token }} - install: | - apk add py3-virtualenv - run: | - set -e - python3 -m virtualenv .venv - source .venv/bin/activate - pip install pytest - cd py_cli - pip install deepchopper-cli --find-links dist --force-reinstall - deepchopper-chop --help windows: runs-on: ${{ matrix.platform.runner }}