Skip to content

Commit 2fed942

Browse files
committed
MAINT: adding new skip file for GHA, finalizing skipping for parquet notebooks
1 parent dfc53bb commit 2fed942

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

conf.py

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

52-
# Both NEOWISE notebooks work with large data that doesn't work with CircleCI resource limits
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
5354
nb_execution_excludepatterns += ['neowise-source-table-strategies.md', 'neowise-source-table-lightcurves.md']
5455

5556
if platform.platform().startswith("mac") or platform.platform().startswith("win"):

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

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)