##// END OF EJS Templates
Merge pull request #4303 from ipython/multidir...
Merge pull request #4303 from ipython/multidir Add multidirectory support for the Notebook. Major change to URL schemes in the notebook server, documented in [IPEP 16](https://github.com/ipython/ipython/wiki/IPEP-16%3A-Notebook-multi-directory-dashboard-and-URL-mapping).

File last commit:

r13090:ca26f652
r13184:1274dc14 merge
Show More
.travis.yml
14 lines | 421 B | 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:
- 2.7
Thomas Kluyver
Tell Travis CI to test on Python 3.3 as well.
r8987 - 3.3
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
- easy_install -q pyzmq
Thomas Kluyver
Add requests to Travis installation
r13090 - pip install jinja2 sphinx pygments tornado requests
Jonathan Frederic
Add pandoc to TravisCI config
r11510 - sudo apt-get install pandoc
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 install:
- python setup.py install -q
script:
Thomas Kluyver
cd to /tmp in Travis for tests
r12615 - if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then cd /tmp; iptest; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then cd /tmp; iptest3; fi