|
49 | 49 |
|
50 | 50 | if 'CIRCLECI' in os.environ: |
51 | 51 | # 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. |
54 | 54 | nb_execution_excludepatterns += ['wise-allwise-catalog-demo.md', 'Parallelize_Convolution.md'] |
55 | 55 |
|
| 56 | + |
56 | 57 | if 'CI' in os.environ: |
57 | 58 | # 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'] |
59 | 63 |
|
60 | 64 | if platform.platform().startswith("mac") or platform.platform().startswith("win"): |
61 | 65 | # The way the notebooks use the multiprocessing module is known to not work on non-Linux |
62 | 66 | nb_execution_excludepatterns += ['Parallelize_Convolution.md', 'neowise-source-table-lightcurves.md'] |
63 | 67 |
|
64 | | -# Euclid data is not yet available publicly |
65 | | -nb_execution_excludepatterns += ['*_Euclid*', '*euclid*'] |
66 | | - |
67 | 68 | # -- Options for HTML output ------------------------------------------------- |
68 | 69 |
|
69 | 70 | # The theme to use for HTML and HTML Help pages. See the documentation for |
|
0 commit comments