Skip to content

Commit

Permalink
DX: do not run Julia notebook on RTD
Browse files Browse the repository at this point in the history
  • Loading branch information
redeboer committed May 9, 2024
1 parent f1831db commit 340246c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ def get_nb_exclusion_patterns() -> list[str]:
julia_notebooks = [
"report/019*",
]
if shutil.which("julia") is None:
if shutil.which("julia") is None or "READTHEDOCS" in os.environ:
exclusions.extend(julia_notebooks)
return exclusions

Expand Down

0 comments on commit 340246c

Please sign in to comment.