Skip to content

Commit

Permalink
Update python-package.yml
Browse files Browse the repository at this point in the history
Using `pip install .` instead of `python -m build`
  • Loading branch information
Zuzu-Typ committed Oct 21, 2024
1 parent 9522685 commit c0d30fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest build
pip install pytest
- name: Install Package
run: |
python -m build
python -m pip install .
- name: Test with pytest
run: |
pytest tests
Expand Down

0 comments on commit c0d30fe

Please sign in to comment.