Skip to content

Commit 741abce

Browse files
authored
Add imagemagick to notebook testing environment (#3749)
Our cron job was not running `tox -e fix` correctly when generating new notebook outputs. This was because imagemagick wasn't included in the CI environment. This PR fixes that bug.
1 parent 4e0f696 commit 741abce

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/actions/set-up-notebook-testing/action.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ runs:
5757
shell: bash
5858
run: |
5959
sudo apt-get update
60-
sudo apt-get install texlive-pictures texlive-latex-extra poppler-utils graphviz
60+
sudo apt-get install texlive-pictures texlive-latex-extra poppler-utils graphviz imagemagick
61+
sudo ln -s /usr/bin/convert /usr/bin/magick
6162
6263
- name: Set ulimit
6364
# https://github.com/Qiskit/documentation/issues/2387#issuecomment-2523753374

0 commit comments

Comments
 (0)