notebook/.travis.yml

56 lines
1.4 KiB
YAML
Raw Normal View History

2015-04-11 07:45:21 +08:00
# http://travis-ci.org/#!/ipython/ipython
language: python
2016-02-13 04:51:23 +08:00
cache:
directories:
2016-02-13 06:21:06 +08:00
- $HOME/.cache/bower
2016-02-13 05:06:19 +08:00
python:
- 3.5.1 # Set to 3.5.1 since travis has not yet included as default for 3.5
- 2.7
2016-02-23 06:15:38 +08:00
sudo: required
2016-02-13 04:51:23 +08:00
2015-04-11 07:45:21 +08:00
env:
global:
- PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
matrix:
- GROUP=js/notebook
2015-04-11 07:45:21 +08:00
- GROUP=python
- GROUP=js/base
- GROUP=js/services
- GROUP=js/tree
2016-02-23 06:15:38 +08:00
2015-04-11 07:45:21 +08:00
before_install:
- pip install --upgrade pip
- pip install --upgrade setuptools wheel nose coverage codecov
- nvm install 6.9.2
- nvm use 6.9.2
- node --version
- npm --version
2016-02-10 07:47:44 +08:00
- npm upgrade -g npm
- npm install
2017-01-06 23:54:59 +08:00
- |
if [[ $GROUP == js* ]]; then
npm install -g casperjs@1.1.3 phantomjs-prebuilt@2.1.7
fi
2015-04-11 07:45:21 +08:00
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
2016-02-23 06:15:38 +08:00
2015-04-11 07:45:21 +08:00
install:
2016-02-13 06:21:06 +08:00
- pip install -f travis-wheels/wheelhouse file://$PWD#egg=notebook[test]
- wget https://github.com/jgm/pandoc/releases/download/1.19.1/pandoc-1.19.1-1-amd64.deb && sudo dpkg -i pandoc-1.19.1-1-amd64.deb
2016-02-23 06:15:38 +08:00
2015-04-11 07:45:21 +08:00
script:
- 'if [[ $GROUP == js* ]]; then travis_retry python -m notebook.jstest ${GROUP:3}; fi'
2016-02-13 06:21:06 +08:00
- 'if [[ $GROUP == python ]]; then nosetests -v --with-coverage --cover-package=notebook notebook; fi'
2015-04-11 07:45:21 +08:00
2016-02-13 05:06:19 +08:00
matrix:
include:
- python: 3.3
env: GROUP=python
- python: 3.4
env: GROUP=python
2016-02-23 06:15:38 +08:00
2016-02-13 06:21:06 +08:00
after_success:
2016-02-23 06:15:38 +08:00
- codecov