Skip to content

Commit

Permalink
chore: Remove redundant pytest job configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
cauliyang committed Oct 11, 2024
1 parent e9615f8 commit dbbb8f5
Showing 1 changed file with 0 additions and 31 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/release-python-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down

0 comments on commit dbbb8f5

Please sign in to comment.