summaryrefslogtreecommitdiff
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index fb073d3f..5b267cc7 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -26,7 +26,9 @@ jobs:
- name: Test NetworkX
run: |
- pytest --durations=10 --pyargs networkx
+ # NOTE: --assert=plain necessary to work around known pytest issue.
+ # See pytest-dev/pytest#10008
+ pytest --durations=10 --pyargs --assert=plain networkx
default:
runs-on: ${{ matrix.os }}-latest