Skip to content

Commit

Permalink
Run pytest on built wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Jan 4, 2025
1 parent fa4ff1b commit f5f4027
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -180,3 +180,19 @@ jobs:
with:
command: upload
args: --non-interactive --skip-existing wheels-*/*

pytest-linux:
runs-on: ubuntu-latest
name: "Python Tests"
needs: linux
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
name: wheels-linux-x86_64
- uses: actions/setup-python@v5
with:
python-version: 3.9
- run: pip install wheels-linux-x86_64/*
- run: pip install poetry
- run: poetry run pytest

0 comments on commit f5f4027

Please sign in to comment.