File tree 3 files changed +11
-4
lines changed
3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -4,10 +4,14 @@ python:
4
4
notifications :
5
5
email : true
6
6
before_install :
7
- - export PATH="$HOME/miniconda/bin:$PATH"
7
+ - export PATH="./.travis: $HOME/miniconda/bin:$PATH"
8
8
- sudo apt-get -qq update
9
9
- bash .travis/install_conda.sh
10
10
install : " pip install --quiet -r requirements.txt"
11
+ before_script :
12
+ - " export DISPLAY=:99.0"
13
+ - " sh -e /etc/init.d/xvfb start"
14
+ - sleep 3 # give xvfb some time to start
11
15
script : make travis
12
16
after_script :
13
17
- echo "Rendered notebook http://nbviewer.jupyter.org/urls/s3.amazonaws.com/pythonplotbuilds/tdhopper/pythonplot.com/$TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER/Examples.$(git log -1 --pretty=format:'%h').ipynb"
Original file line number Diff line number Diff line change 5
5
$HOME /miniconda/bin/conda config --set always_yes yes --set changeps1 no
6
6
$HOME /miniconda/bin/conda update -q conda
7
7
$HOME /miniconda/bin/conda info -a
8
- $HOME /miniconda/bin/conda install --quiet pip readline r-essentials
9
- $HOME /miniconda/bin/conda install --quiet --channel r rpy2
10
- $HOME /miniconda/bin/conda install --quiet -c plotly plotly-orca
8
+ conda install --quiet pip readline r-essentials
9
+ conda install --quiet --channel r rpy2
10
+ wget --quiet https://github.com/plotly/orca/releases/download/v1.2.1/orca-1.2.1-x86_64.AppImage -O orca.AppImage
11
+ chmod +x orca.AppImage
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+ xvfb-run -a ./orca.AppImage " $@ "
You can’t perform that action at this time.
0 commit comments