You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add manifest
* Tidy setup.py
* Add install miniconda script
* Refactoring build
* Add debugging messages
* Bash is hard
* Set python versions correctly
* Trying it out
* Remove some debug messages
* Factor out more test utilities
* More nits
* Remove changes to manifest and setup for now
Copy file name to clipboardExpand all lines: .travis.yml
+7-16Lines changed: 7 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -5,32 +5,23 @@ python:
5
5
- "3.4"
6
6
7
7
before_install:
8
-
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh; else wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh; fi
9
-
- chmod +x miniconda.sh
10
-
- ./miniconda.sh -b
11
-
- if [ ${TRAVIS_PYTHON_VERSION:0:1} == "2" ]; then export PATH=/home/travis/miniconda2/bin:$PATH; else export PATH=/home/travis/miniconda3/bin:$PATH; fi
8
+
- . ./scripts/install_miniconda.sh
12
9
- "export DISPLAY=:99.0"
13
10
- "sh -e /etc/init.d/xvfb start"
14
11
- if [ ${MATPLOTLIB} = "1.2" ]; then mkdir $HOME/.matplotlib; fi
15
12
- if [ ${MATPLOTLIB} = "1.2" ]; then cp ${SRCDIR}/tools/matplotlibrc $HOME/.matplotlib/matplotlibrc; fi
0 commit comments