Skip to content

Commit

Permalink
Increase cell execution timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
flferretti committed Jul 3, 2024
1 parent b7d7efa commit fed4ede
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,19 +103,19 @@
"examples_dirs": "../examples",
"gallery_dirs": "../generated_examples/",
"doc_module": "jaxsim",
"abort_on_example_error": True,
}

# -- Options for myst -------------------------------------------------------
myst_enable_extensions = [
"amsmath",
"dollarmath",
]
nb_execution_mode = "force"
nb_execution_allow_errors = False
nb_execution_mode = "auto"
nb_execution_raise_on_error = True
nb_render_image_options = {
"scale": "60",
}
nb_execution_timeout = 180

source_suffix = [".rst", ".md", ".ipynb"]

Expand Down
2 changes: 0 additions & 2 deletions examples/PD_controller.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,6 @@
"outputs": [],
"source": [
"# @title Set up MuJoCo renderer\n",
"\n",
"import os\n",
"import subprocess\n",
"\n",
"os.environ[\"MUJOCO_GL\"] = \"osmesa\"\n",
Expand Down

0 comments on commit fed4ede

Please sign in to comment.