Skip to content

Commit

Permalink
try run nb
Browse files Browse the repository at this point in the history
  • Loading branch information
juanitorduz committed Aug 9, 2024
1 parent 789aa0d commit 7210077
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified docs/source/notebooks/mmm/model.nc
Binary file not shown.
4 changes: 2 additions & 2 deletions scripts/run_notebooks/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@
NOTEBOOKS_PATH = DOC_SOURCE / "notebooks"
NOTEBOOKS_SKIP: list[str] = [
"mmm_budget_allocation_example.ipynb", # This works locally but not on GitHub Actions
"mmm_tvp_example.ipynb", # This notebook takes too long to run
# "mmm_tvp_example.ipynb", # This notebook takes too long to run
]
NOTEBOOKS: list[Path] = list(NOTEBOOKS_PATH.glob("*/*.ipynb"))
NOTEBOOKS = [nb for nb in NOTEBOOKS if nb.name not in NOTEBOOKS_SKIP]
NOTEBOOKS = [nb for nb in NOTEBOOKS if nb.name in NOTEBOOKS_SKIP]
NOTEBOOKS.append(DOC_SOURCE / "guide" / "benefits" / "model_deployment.ipynb")


Expand Down

0 comments on commit 7210077

Please sign in to comment.