Skip to content

Commit e2e4313

Browse files
committed
MAINT: require scipy_doctest>=1.8.0
See https://discuss.scientific-python.org/t/scipy-doctest-select-only-doctests-or-both-doctests-and-unit-tests/1950 for the rationale and the plan. TL;DR: this is the only change needed to be forward-compatible with scipy_doctest>=1.8.0
1 parent 191d458 commit e2e4313

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ jobs:
253253
python ../pywt/tests/test_doc.py
254254
elif [ "${REFGUIDE_CHECK}" == "1" ]; then
255255
# doctests docstrings
256-
pytest --doctest-modules --pyargs pywt -v --doctest-collect=api
257-
pytest --doctest-modules --pyargs pywt.data -v
256+
pytest --doctest-modules --doctest-only-doctests=true --pyargs pywt -v --doctest-collect=api
257+
pytest --doctest-modules --doctest-only-doctests=true --pyargs pywt.data -v
258258
else
259259
pytest --pyargs pywt
260260
fi

0 commit comments

Comments
 (0)