Skip to content

Commit

Permalink
Add workaround for pytest failures on 3.11b2 (#404)
Browse files Browse the repository at this point in the history
Temporary workaround for pytest failures on 3.11b2. See pytest-dev/pytest#10008 and the [Python 3.11b2 release notes](https://www.python.org/downloads/release/python-3110b2/) for more info.
  • Loading branch information
jarrodmillman committed Jun 2, 2022
1 parent 7eec71f commit 85a4327
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ jobs:
- name: Run test suite
run: |
pytest -v --pyargs numpydoc
# NOTE: --assert=plain necessary to work around known pytest issue.
# See pytest-dev/pytest#10008
pytest -v --pyargs --assert=plain numpydoc
- name: Make sure CLI works
run: |
Expand Down

0 comments on commit 85a4327

Please sign in to comment.