[scripts] Specify output type in notebooks validation (#482)

This commit is contained in:
Andres Paz 2020-09-10 13:42:55 -07:00 коммит произвёл GitHub
Родитель b3234526cf
Коммит 8814751c76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -64,10 +64,10 @@ function Validate {
$ErrorActionPreference = 'Continue'
if ($env:SYSTEM_DEBUG -eq "true") {
# Redirect stderr output to stdout to prevent an exception being incorrectly thrown.
jupyter nbconvert $CheckNotebook --execute --ExecutePreprocessor.timeout=120 --log-level=DEBUG 2>&1 | %{ "$_"}
jupyter nbconvert $CheckNotebook --execute --to html --ExecutePreprocessor.timeout=120 --log-level=DEBUG 2>&1 | %{ "$_"}
} else {
# Redirect stderr output to stdout to prevent an exception being incorrectly thrown.
jupyter nbconvert $CheckNotebook --execute --ExecutePreprocessor.timeout=120 2>&1 | %{ "$_"}
jupyter nbconvert $CheckNotebook --execute --to html --ExecutePreprocessor.timeout=120 2>&1 | %{ "$_"}
}
$ErrorActionPreference = 'Stop'
@ -112,7 +112,8 @@ if ($Notebook -ne "") {
$AllItems = Get-ChildItem (Join-Path $PSScriptRoot '..') `
-Recurse `
-Include '*.ipynb' `
-Exclude $not_ready
-Exclude $not_ready `
| Sort-Object Name
# If the start index is not set, set it to 0 to check all notebooks
if ($StartIndex -lt 0) {