Skip to content

Commit

Permalink
remove pytest from maturin workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
sslivkoff committed Dec 27, 2023
1 parent d256743 commit 50d4dfc
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/python_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ jobs:
if: ${{ matrix.python-version >= '3.8' || contains(fromJson('["3.10", "3.11", "3.12"]'), matrix.python-version) }}
run: |
pip install cryo_python --no-index --find-links dist --force-reinstall
- name: Python UnitTest - cryo_python
run: |
pip install pytest numpy hypothesis
python -m pytest cryo_python -vs
# - name: Python UnitTest - cryo_python
# run: |
# pip install pytest numpy hypothesis
# python -m pytest cryo_python -vs
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -113,10 +113,10 @@ jobs:
- name: Install built wheel
run: |
pip install cryo_python --no-index --find-links dist --force-reinstall
- name: Python UnitTest - cryo_python
run: |
pip install pytest numpy hypothesis
python -m pytest cryo_python -vs
# - name: Python UnitTest - cryo_python
# run: |
# pip install pytest numpy hypothesis
# python -m pytest cryo_python -vs
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down Expand Up @@ -160,9 +160,9 @@ jobs:
- name: Python UnitTest - cryo_python
if: matrix.target == 'x86_64'
run: |
pip install pytest numpy hypothesis
# pip install pytest numpy hypothesis
pip install cryo_python --no-index --find-links dist --force-reinstall
python -m pytest cryo_python -vs
# python -m pytest cryo_python -vs
- name: Upload wheels
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 50d4dfc

Please sign in to comment.