Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
45fce40
Update demo notebook initialization cells
zitterbewegung May 21, 2026
3ae321c
Notebooks have been moved
zitterbewegung May 21, 2026
abe090b
Add Colab dependency install cells
zitterbewegung May 22, 2026
df620e6
Fix Colab notebook install cells
zitterbewegung May 22, 2026
1c84120
Fix spelling in Colab notebooks
zitterbewegung May 22, 2026
1f3c638
Remove unused os import from Colab cells
zitterbewegung May 25, 2026
806e400
Use capture for Colab install output
zitterbewegung May 25, 2026
c0444a2
Automating Colab/notebook consistency
sou-cheng-choi May 25, 2026
edf5741
Merge remote-tracking branch 'origin/develop' into colab_choi
sou-cheng-choi May 30, 2026
b1c4f3d
Merge branch 'colab_easy_fix_redo' into colab_choi
sou-cheng-choi May 30, 2026
7b6d1f3
Update
sou-cheng-choi May 30, 2026
f6202a0
Update makefile
sou-cheng-choi May 30, 2026
86e02e5
Add make target for Colab bootstrap classification
sou-cheng-choi May 30, 2026
8b741ee
Debugged `harden_colab_notebook.py` and add unit tests for badge hand…
sou-cheng-choi May 30, 2026
c5305f1
Add branch notebook execution script
zitterbewegung Jun 5, 2026
bcf7526
Skip Colab bootstrap during branch notebook execution
zitterbewegung Jun 6, 2026
bf67778
Download Dakota Genz points in notebook
zitterbewegung Jun 6, 2026
6adeb36
Remove Dakota Genz generation fallback
zitterbewegung Jun 6, 2026
14eb139
Use gdown for Dakota Genz data download
zitterbewegung Jun 7, 2026
7fad83a
Add local notebook execution script
zitterbewegung Jun 8, 2026
9c62281
Comment out gdown in Dakota notebook
zitterbewegung Jun 8, 2026
f359455
Fix Windows notebook CI LaTeX setup
zitterbewegung Jun 9, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .github/workflows/alltests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,14 @@ jobs:
run: |
pip install --find-links ./.wheels -e '.[test,test_torch,test_gpytorch,test_botorch]'
# -----------------------------------------------------------
# Colab readiness smoke tests (Linux only)
# -----------------------------------------------------------
- name: Run Colab readiness smoke tests (Linux)
if: runner.os == 'Linux'
shell: bash -l {0}
run: |
make check_colab_notebooks
# -----------------------------------------------------------
# Install minimal LaTeX required by Jupyter notebooks (OS-specific)
# -----------------------------------------------------------
- name: Install minimal LaTeX (Linux)
Expand Down Expand Up @@ -252,6 +260,7 @@ jobs:
mpm --admin --install=lmodern
mpm --admin --install=type1cm
mpm --admin --install=tex-gyre
mpm --admin --install=underscore
latex --version
latexmk -v
dvipng --version
Expand Down Expand Up @@ -345,4 +354,4 @@ jobs:
fail_ci_if_error: false
files: ./artifacts/coverage/booktests/coverage.json

# For success reports, see https://github.com/QMCSoftware/QMCSoftware/actions?query=is%3Asuccess+workflow%3AAll+Tests
# For success reports, see https://github.com/QMCSoftware/QMCSoftware/actions?query=is%3Asuccess+workflow%3AAll+Tests
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ demos/prob_failure_gp_ci_plots/
demos/fgpr_figs/
demos/GBM/images/*.png
demos/GBM/outputs/*.*
*.tmp_colab*

# tests
.coverage
Expand Down
Loading
Loading