Skip to content

Commit

Permalink
Try disabling parallelism on tutorials job (#5866)
Browse files Browse the repository at this point in the history
We're histting a relatively high tutorial job failure rate caused by
jupyter/jupyter_client#541 on certain notebooks we run in the tutorials
job. This appears to be caused by multiprocessing usage inside the
qiskit that print to stdout while running. To try and avoid this issue,
this commit disables parallelism in qiskit by setting the env var to do
that. The only concern is whether we have sufficient time budget to
execute the notebooks in CI.
  • Loading branch information
mtreinish authored Feb 17, 2021
1 parent 0b30218 commit 4443201
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,8 @@ stages:
set -e
cd qiskit-tutorials
sphinx-build -b html . _build/html
env:
QISKIT_PARALLEL: False
- task: ArchiveFiles@2
inputs:
rootFolderOrFile: 'qiskit-tutorials/_build/html'
Expand Down

0 comments on commit 4443201

Please sign in to comment.