Skip to content

Commit

Permalink
don't doctest on macos-14 for arm64
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewfeickert committed Mar 8, 2024
1 parent 965ef26 commit 0346e83
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,8 @@ jobs:
token: ${{ secrets.CODECOV_TOKEN }}

- name: Test docstring examples with doctest
if: matrix.python-version == '3.11'
#TODO: Don't currently try to match amd64 and arm64 floating point for docs, but will in the future.
if: matrix.python-version == '3.11' && matrix.os != 'macos-14'
run: coverage run --data-file=.coverage-doctest --module pytest src/ README.rst

- name: Coverage report for doctest only
Expand Down

0 comments on commit 0346e83

Please sign in to comment.