Skip to content

Commit 44ae68d

Browse files
committed
get it running on travis
1 parent d2fb65d commit 44ae68d

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

.travis.yml

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# http://travis-ci.org/#!/ipython/ipython
2+
language: python
3+
python:
4+
- 3.4
5+
- 2.7
6+
sudo: false
7+
env:
8+
global:
9+
- PATH=$TRAVIS_BUILD_DIR/pandoc:$PATH
10+
matrix:
11+
- GROUP=python
12+
- GROUP=js/base
13+
- GROUP=js/notebook
14+
- GROUP=js/services
15+
- GROUP=js/tree
16+
- GROUP=js/widgets
17+
before_install:
18+
- 'if [[ $GROUP == js* ]]; then wget https://7de4dfdec62155b49b44-d726a73613a1989d29b147f20996e7c1.ssl.cf2.rackcdn.com/mathjax.zip; fi'
19+
- 'if [[ $GROUP == js* ]]; then npm install -g casperjs; fi'
20+
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
21+
install:
22+
- pip install -f travis-wheels/wheelhouse -r requirements.txt file://$PWD#egg=jupyter_notebook[test] coveralls
23+
before_script:
24+
- 'if [[ $GROUP == js* ]]; then python -m IPython.external.mathjax mathjax.zip; fi'
25+
script:
26+
- 'if [[ $GROUP == js* ]]; then python -m jupyter_notebook.jstest $GROUP; fi'
27+
- 'if [[ $GROUP == python ]]; then nosetests --with-coverage --cover-package=jupyter_notebook jupyter_notebook; fi'
28+
matrix:
29+
include:
30+
- python: 3.3
31+
env: GROUP=python
32+
33+
after_success:
34+
- coveralls

requirements.txt

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-e git+https://github.com/ipython/ipython_genutils.git#egg=ipython_genutils
2+
-e git+https://github.com/ipython/traitlets.git#egg=traitlets
3+
-e git+https://github.com/jupyter/jupyter_core.git#egg=jupyter_core
4+
-e git+https://github.com/jupyter/jupyter_nbformat.git#egg=jupyter_nbformat
5+
-e git+https://github.com/jupyter/jupyter_client.git#egg=jupyter_client
6+
-e git+https://github.com/ipython/ipython.git#egg=ipython
7+
-e git+https://github.com/ipython/ipython_kernel.git#egg=ipython_kernel
8+
-e git+https://github.com/jupyter/jupyter_nbconvert.git#egg=jupyter_nbconvert

0 commit comments

Comments
 (0)