Compare commits

...
Author SHA1 Message Date
Ivan CheungandGitHub c8dd5e0c32 Merge branch 'main' into ivanmkc--add-default-kernel 2022-06-23 19:13:14 -04:00
Karl WeinmeisterandGitHub 36063ee649 Merge branch 'main' into ivanmkc--add-default-kernel 2022-06-18 16:30:27 -05:00
Ivan CheungandGitHub c00408cc30 Merge branch 'main' into ivanmkc--add-default-kernel 2022-06-13 11:21:45 -04:00
Ivan CheungandGitHub c41200ac5c Add default kernel_name for notebook execution
Currently, there is no kernel_name. Hence, the execution test cannot run for notebooks that don't have kernels defined in their .ipynb file.

Side-note: We should use lint to remove the kernel_name from .ipynb as well, as it could include info specific to the author's environment.
2022-04-21 00:45:10 +09:00
+1
View File
@@ -58,6 +58,7 @@ def execute_notebook(
output_path=notebook_source,
progress_bar=should_log_output,
request_save_on_cell_execute=should_log_output,
kernel_name="python3",
log_output=should_log_output,
stdout_file=sys.stdout if should_log_output else None,
stderr_file=sys.stderr if should_log_output else None,