From 724d03ea20b5e286c258c18dd9985cc932334362 Mon Sep 17 00:00:00 2001 From: Nathaniel Nicandro Date: Mon, 29 Nov 2021 21:54:46 -0600 Subject: [PATCH] Install pandoc during tests on Travis and Appveyor --- .travis.yml | 2 ++ appveyor.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.travis.yml b/.travis.yml index 90c4bdd..0eec984 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,6 +39,8 @@ install: # /usr/local/share/jupyter. This installs one with an absolute path using our # python3 - sudo python3.6 -m ipykernel.kernelspec + # Install additional packages needed by the tests + - sudo apt-get install pandoc before_script: # Ensure Jupyter runtime dir can be written to - mkdir -p $(jupyter --runtime-dir) diff --git a/appveyor.yml b/appveyor.yml index d59ce15..64f9108 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -33,6 +33,8 @@ install: - if not exist C:\Miniconda3-x64\envs\jupyter conda create --name jupyter python=%JUPYTER_PYTHON_VERSION% - conda activate jupyter - conda install jupyter + # Install additional packages needed by tests + - conda install -c conda-forge pandoc # Ensure Jupyter runtime dir can be written to - ps: mkdir -p (jupyter --runtime-dir) - jupyter --version