Skip to content

Commit 85a4327

Browse files
Add workaround for pytest failures on 3.11b2 (#404)
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.
1 parent 7eec71f commit 85a4327

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,9 @@ jobs:
9797
9898
- name: Run test suite
9999
run: |
100-
pytest -v --pyargs numpydoc
100+
# NOTE: --assert=plain necessary to work around known pytest issue.
101+
# See pytest-dev/pytest#10008
102+
pytest -v --pyargs --assert=plain numpydoc
101103
102104
- name: Make sure CLI works
103105
run: |

0 commit comments

Comments
 (0)