Skip to content

Commit 79ecdef

Browse files
authored
Merge pull request #16 from Caltech-IPAC/raen/add/neowise-parquet
Add notebooks for NEOWISE parquet catalog
2 parents 5108ef9 + 711e980 commit 79ecdef

File tree

7 files changed

+1035
-1
lines changed

7 files changed

+1035
-1
lines changed

conf.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,13 @@
4949
# Ignore them here.
5050
nb_execution_excludepatterns += ['wise-allwise-catalog-demo.md', 'Parallelize_Convolution.md']
5151

52+
if 'CI' in os.environ:
53+
# Both NEOWISE parquet notebooks work with large data that doesn't work within CircleCI or GHA resource limits
54+
nb_execution_excludepatterns += ['neowise-source-table-strategies.md', 'neowise-source-table-lightcurves.md']
55+
5256
if platform.platform().startswith("mac") or platform.platform().startswith("win"):
5357
# The way the notebooks use the multiprocessing module is known to not work on non-Linux
54-
nb_execution_excludepatterns += ['Parallelize_Convolution.md']
58+
nb_execution_excludepatterns += ['Parallelize_Convolution.md', 'neowise-source-table-lightcurves.md']
5559

5660
# -- Options for HTML output -------------------------------------------------
5761

ignore_gha_testing

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
tutorials/parquet-catalog-demos/neowise-source-table-lightcurves
2+
tutorials/parquet-catalog-demos/neowise-source-table-strategies

index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ caption: Cloud data access
3333
3434
tutorials/cloud_access/cloud-access-intro
3535
tutorials/parquet-catalog-demos/wise-allwise-catalog-demo
36+
tutorials/parquet-catalog-demos/neowise-source-table-strategies
37+
tutorials/parquet-catalog-demos/neowise-source-table-lightcurves
3638
tutorials/openuniversesims/openuniverse2024_roman_simulated_timedomainsurvey
3739
tutorials/openuniversesims/openuniverse2024_roman_simulated_wideareasurvey
3840

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ commands =
3737
# too due to issues with e.g. multiprocessing and problems in upstream dependency
3838
!buildhtml: bash -c 'if python -c "import platform; print(platform.platform())" | grep -i macos; then cat ignore_osx_testing >> ignore_testing; fi'
3939
!buildhtml: bash -c 'if python -c "import platform; print(platform.platform())" | grep -i win; then cat ignore_windows_testing >> ignore_testing; fi'
40+
!buildhtml: bash -c 'if [[ $CI == true ]]; then cat ignore_gha_testing >> ignore_testing; fi'
4041
!buildhtml: bash -c 'find tutorials -name "*.md" | grep -vf ignore_testing | xargs jupytext --to notebook '
4142

4243
!buildhtml: pytest --nbval-lax -vv --durations=10 tutorials

0 commit comments

Comments
 (0)