Skip to content

Commit 7d42d8c

Browse files
committed
exclude nb build on all machines except when " -t build-notebooks" is given
This should fix the build problem on AMS CI
1 parent 6ace523 commit 7d42d8c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,12 +184,12 @@ def tagged_commit():
184184
nb_execution_timeout = 150
185185
nb_execution_mode = "auto"
186186

187-
if not sys.platform.startswith("win"):
187+
if not tags.has("build-notebooks"):
188188
nb_execution_excludepatterns = [
189189
# Exclude the parameter opt from automatic execution.
190190
# It will not run on non-Windows machines since it needs the AnyBody
191191
# conda package
192-
'Parameter_studies_and_optimization/lesson3/lesson3.ipynb'
192+
'**/*.ipynb',
193193
]
194194

195195

0 commit comments

Comments
 (0)