##// END OF EJS Templates
Build pandoc using haskell-platform in .travis.yml...
Build pandoc using haskell-platform in .travis.yml This is required because travis use ubuntu 12.04 which ships with pandoc 1.9.11 this will not be required if travis update to ubuntu 14.04 whichuses version 1.12.2.1.

File last commit:

r18436:68ba9ef2
r18436:68ba9ef2
Show More
.travis.yml
33 lines | 1.1 KiB | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 3.4
- 2.7
- 3.3
env:
- GROUP=js
- GROUP=
before_install:
# workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
# Pierre Carrier's PPA for PhantomJS and CasperJS
- time sudo add-apt-repository -y ppa:pcarrier/ppa
- time sudo apt-get update
- time sudo apt-get install casperjs libzmq3-dev
# Needed to get recent version of pandoc in ubntu 12.04
- time sudo apt-get install haskell-platform
- time cabal update
- time cabal install pandoc==1.12.1
# pin tornado < 4 for js tests while phantom is on super old webkit
- if [[ $GROUP == 'js' ]]; then pip install 'tornado<4'; fi
- time pip install -f https://nipy.bic.berkeley.edu/wheelhouse/travis jinja2 sphinx pygments tornado requests!=2.4.2 mock pyzmq jsonschema jsonpointer mistune
- if [[ $GROUP == 'js' ]]; then python -m IPython.external.mathjax; fi
install:
- time python setup.py install -q
script:
- cd /tmp && iptest $GROUP
matrix:
exclude:
- python: 3.3
env: GROUP=js