notebook/.travis.yml

37 lines
941 B
YAML
Raw Normal View History

2015-04-11 07:45:21 +08:00
# http://travis-ci.org/#!/ipython/ipython
language: python
group: edge
cache:
directories:
- ~/.cache/bower
2015-04-11 07:45:21 +08:00
python:
2015-09-30 22:05:33 +08:00
- 3.5
2015-04-11 07:45:21 +08:00
- 2.7
sudo: false
env:
global:
- PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
matrix:
- GROUP=python
- GROUP=js/base
- GROUP=js/notebook
- GROUP=js/services
- GROUP=js/tree
before_install:
- 'if [[ $GROUP == js* ]]; then npm install -g casperjs; fi'
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
install:
2016-01-29 02:18:01 +08:00
- pip install -f travis-wheels/wheelhouse file://$PWD#egg=notebook[test] coveralls
2015-04-11 07:45:21 +08:00
script:
2015-05-14 01:56:32 +08:00
- 'if [[ $GROUP == js* ]]; then python -m notebook.jstest ${GROUP:3}; fi'
- 'if [[ $GROUP == python ]]; then nosetests --with-coverage --cover-package=notebook notebook; fi'
2015-04-11 07:45:21 +08:00
matrix:
include:
- python: 3.3
env: GROUP=python
2015-09-30 22:05:33 +08:00
- python: 3.4
env: GROUP=python
2015-04-11 07:45:21 +08:00
after_success:
- coveralls