Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 724d03e

Browse files
committedNov 30, 2021
Install pandoc during tests on Travis and Appveyor
1 parent 4729e21 commit 724d03e

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed
 

‎.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ install:
3939
# /usr/local/share/jupyter. This installs one with an absolute path using our
4040
# python3
4141
- sudo python3.6 -m ipykernel.kernelspec
42+
# Install additional packages needed by the tests
43+
- sudo apt-get install pandoc
4244
before_script:
4345
# Ensure Jupyter runtime dir can be written to
4446
- mkdir -p $(jupyter --runtime-dir)

‎appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ install:
3333
- if not exist C:\Miniconda3-x64\envs\jupyter conda create --name jupyter python=%JUPYTER_PYTHON_VERSION%
3434
- conda activate jupyter
3535
- conda install jupyter
36+
# Install additional packages needed by tests
37+
- conda install -c conda-forge pandoc
3638
# Ensure Jupyter runtime dir can be written to
3739
- ps: mkdir -p (jupyter --runtime-dir)
3840
- jupyter --version

0 commit comments

Comments
 (0)
Please sign in to comment.