Skip to content

Commit cd4e775

Browse files
committed
TMP: ignore testing notebooks that are broken due to downstream
1 parent 3bd31ab commit cd4e775

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

numpy_20_ignore_testing

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# We temporarily ignore testing these tutorials as they use downstream packages
2+
# that are not yet compatible with Numpy 2.0 and cause notebook failures
3+
content/mooreslaw-tutorial.md

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ commands =
3939
pip freeze
4040

4141
# Ignore testing the tutorials listed in ignore_testing file
42-
!buildhtml: bash -c 'find content -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook '
42+
!buildhtml-!devdeps: bash -c 'find content -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook '
43+
!buildhtml-devdeps: bash -c 'find content -name "*.md" | grep -vf ignore_testing -vf numpy_20_ignore_testing | xargs jupytext --to notebook '
4344

4445
!buildhtml: pytest --nbval-lax --durations=10 content/
4546
buildhtml: make -C site/ SPHINXOPTS="-nWT --keep-going" html

0 commit comments

Comments
 (0)