Skip to content

Commit b8e128b

Browse files
authored
Merge pull request #232 from bsipocz/MAINT_turn_off_parallel_exec
MAINT: turning off parallel execution
2 parents e428789 + 23e08f7 commit b8e128b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,10 @@ commands =
8686
buildhtml: bash -c 'if [ -s ignore_execute ]; then for name in $(cat ignore_execute | sort| uniq); do if [ -z "$(head -n 20 ${name}| grep execute:)" ]; then sed -i -e "s|kernelspec:|execute:\n skip: true\nkernelspec:|g" ${name}; fi; done;fi'
8787

8888
buildhtml: bash -c "echo 'Notebooks ignored (not tested/executed) in this job:\n'; cat ignore_execute"
89+
8990
# Using srtict so we fail with trackbacks and debug mode to have a richer log
90-
buildhtml: bash -c "jupyter-book build --execute --html --strict -d"
91+
# For full build we disable parallel runs to easy server load
92+
buildhtml: bash -c "jupyter-book build --execute --execute-parallel 1 --html --strict -d"
9193

9294
pip_pre =
9395
predeps: true

0 commit comments

Comments
 (0)