Skip to content

Commit

Permalink
add local test
Browse files Browse the repository at this point in the history
  • Loading branch information
karlosss committed Oct 17, 2024
1 parent a1aaf46 commit 03b4606
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,26 @@ jobs:

- name: Build wheels
uses: pypa/[email protected]

run_tests:
name: Run tests locally
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
with:
submodules: 'recursive'

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"

- name: Build locally
run: python -m build

- name: Install locally
run: pip install .[test]

- name: Run tests
run: pytest

0 comments on commit 03b4606

Please sign in to comment.