##// END OF EJS Templates
create new terminals with POST /api/terminals...
create new terminals with POST /api/terminals instead of GET terminals/new to be consistent with creating new notebooks. We had to stop using GET notebooks/new because browsers would create new notebooks when making preview thumbnails for commonly visited pages, etc. I assume the same issue would apply to terminals

File last commit:

r18465:795f4059
r18616:d4e327ea
Show More
.travis.yml
31 lines | 1.1 KiB | text/x-yaml | YamlLexer
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 # http://travis-ci.org/#!/ipython/ipython
language: python
python:
MinRK
reorder travis so slowest groups start first
r16540 - 3.4
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 - 2.7
Thomas Kluyver
Tell Travis CI to test on Python 3.3 as well.
r8987 - 3.3
MinRK
add test group env grid
r16471 env:
- GROUP=js
MinRK
reorder travis so slowest groups start first
r16540 - GROUP=
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
Paul Ivanov
workaround for travis-ci/travis-cookbooks#155
r13267 # workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
Paul Ivanov
add Pierre Carrier's PPA for CasperJS & PhantomJS
r13273 # Pierre Carrier's PPA for PhantomJS and CasperJS
MinRK
time all the things
r16469 - time sudo add-apt-repository -y ppa:pcarrier/ppa
Benjamin ABEL
Build pandoc using haskell-platform in .travis.yml...
r18436 # Needed to get recent version of pandoc in ubntu 12.04
Benjamin ABEL
Get recent pandoc in travis from ppa cran2deb4ubuntu...
r18465 - time sudo add-apt-repository -y ppa:marutter/c2d4u
- time sudo apt-get update
- time sudo apt-get install pandoc casperjs libzmq3-dev
MinRK
pin tornado to < 4 on travis js tests...
r17244 # pin tornado < 4 for js tests while phantom is on super old webkit
- if [[ $GROUP == 'js' ]]; then pip install 'tornado<4'; fi
MinRK
forbid known-bad requests-2.4.2
r18157 - time pip install -f https://nipy.bic.berkeley.edu/wheelhouse/travis jinja2 sphinx pygments tornado requests!=2.4.2 mock pyzmq jsonschema jsonpointer mistune
MinRK
install local mathjax on Travis...
r18323 - if [[ $GROUP == 'js' ]]; then python -m IPython.external.mathjax; fi
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 install:
MinRK
install local mathjax on Travis...
r18323 - time python setup.py install -q
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 script:
MinRK
add test group env grid
r16471 - cd /tmp && iptest $GROUP
MinRK
test with Python 3.4 on Travis...
r16502
matrix:
exclude:
- python: 3.3
env: GROUP=js