Skip to content

Commit 3e6f965

Browse files
committed
CI: skip notebook that runs into memory limit
1 parent 255e0f2 commit 3e6f965

1 file changed

Lines changed: 7 additions & 3 deletions

File tree

conf.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,17 @@
4949

5050
if 'CIRCLECI' in os.environ:
5151
# Workaround for https://github.com/Caltech-IPAC/irsa-tutorials/issues/6
52-
# Some of the notebooks run into a DeadKernelError on CircleCI, but do execute and render on GHA.
53-
# Ignore them here.
52+
# Some of the notebooks run into a DeadKernelError (hitting the memory limit) on CircleCI,
53+
# but do execute and render on GHA. Ignore them here.
5454
nb_execution_excludepatterns += ['wise-allwise-catalog-demo.md', 'Parallelize_Convolution.md']
5555

56+
5657
if 'CI' in os.environ:
5758
# Both NEOWISE parquet notebooks work with large data that doesn't work within CircleCI or GHA resource limits
58-
nb_execution_excludepatterns += ['neowise-source-table-strategies.md', 'neowise-source-table-lightcurves.md']
59+
# Some Euclid notebooks are also hitting limits on both platforms
60+
nb_execution_excludepatterns += ['neowise-source-table-strategies.md',
61+
'neowise-source-table-lightcurves.md',
62+
'1_Euclid_intro_MER_images.md', '5_Euclid_intro_SPE_catalog.md']
5963

6064
if platform.platform().startswith("mac") or platform.platform().startswith("win"):
6165
# The way the notebooks use the multiprocessing module is known to not work on non-Linux

0 commit comments

Comments
 (0)