Skip to content

Commit

Permalink
fix: changed to use pip install
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 6, 2024
1 parent adb638f commit 791441c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- run: python setup.py build
- run: |
pip install pytest
python setup.py install
pip install .
pytest
- run: python setup.py test
if: matrix.python-version != '3.12' && matrix.python-version != 'latest'
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- run: python setup.py build
- run: |
pip install pytest
python setup.py install
pip install .
pytest
- run: python setup.py test
if: matrix.python-version != '3.12'
Expand All @@ -86,7 +86,7 @@ jobs:
- run: python setup.py build
- run: |
pip install pytest
python setup.py install
pip install .
pytest
- run: python setup.py test
if: matrix.python-version != '3.12'
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
- run: python setup.py build
- run: |
pip install pytest
python setup.py install
pip install .
pytest
- run: python setup.py test
if: matrix.python-version != '3.12'

0 comments on commit 791441c

Please sign in to comment.