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