Skip to content

Commit

Permalink
Fix tests on MacOS failing in test.yml Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
althonos committed Jan 10, 2025
1 parent 4ab2fda commit 80fd190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ jobs:
- name: Build C extension
run: arch -x86_64 pip install -vv -e . --no-build-isolation
- name: Install test requirements
run: python -m pip install -r src/pyhmmer/tests/requirements.txt
run: arch -x86_64 python -m pip install -r src/pyhmmer/tests/requirements.txt
if: matrix.python-impl == 'CPython'
- name: Test with coverage
run: python -m coverage run -m unittest pyhmmer.tests -vv
run: arch -x86_64 python -m coverage run -m unittest pyhmmer.tests -vv
- name: Upload to Codecov
uses: codecov/codecov-action@v4
if: matrix.python-impl == 'CPython'
Expand Down

0 comments on commit 80fd190

Please sign in to comment.