Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
StrikerRUS authored Oct 27, 2024
1 parent 06986b3 commit 654238d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .ci/test-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -157,8 +157,9 @@ if (($env:TASK -eq "regular") -or (($env:APPVEYOR -eq "true") -and ($env:TASK -e
}
# Run all notebooks
Set-Location $env:BUILD_SOURCESDIRECTORY/examples/python-guide/notebooks
(Get-Content "interactive_plot_example.ipynb").
replace('INTERACTIVE = False', 'assert False, \"Interactive mode disabled\"') |
Set-Content "interactive_plot_example.ipynb"
(Get-Content "interactive_plot_example.ipynb").replace(
'INTERACTIVE = False',
'assert False, \"Interactive mode disabled\"'
) | Set-Content "interactive_plot_example.ipynb"
jupyter nbconvert --ExecutePreprocessor.timeout=180 --to notebook --execute --inplace *.ipynb ; Assert-Output $?
}

0 comments on commit 654238d

Please sign in to comment.