##// END OF EJS Templates
Fix ultratb when there are non-ascii filenames present in a traceback...
Fix ultratb when there are non-ascii filenames present in a traceback This solves the simple problem of running a file with non-ascii chars in its name that contains an error of any kind in it.

File last commit:

r19829:cb55df8b
r19858:31b4e819
Show More
.travis.yml
44 lines | 1.3 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:
Matthias Bussonnier
Split js tests in N subgroups....
r19829 - GROUP=js/base
- GROUP=js/notebook
- GROUP=js/tree
- GROUP=js/widgets
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
Min RK
remove timings in travis.yml...
r18566 - 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
Min RK
remove timings in travis.yml...
r18566 - sudo add-apt-repository -y ppa:marutter/c2d4u
- sudo apt-get update
- sudo apt-get install pandoc casperjs libzmq3-dev
Min RK
use `pip install .[all]` on travis...
r18565 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
Min RK
don't pin tornado<4 on travis
r18738 - 'if [[ $GROUP == js* ]]; then python -m IPython.external.mathjax; fi'
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 install:
Matthias Bussonnier
enable test coverage on coveralls
r19539 - pip install coveralls
Min RK
don't pin tornado<4 on travis
r18738 - pip install -f travis-wheels/wheelhouse file://$PWD#egg=ipython[all]
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 script:
Matthias Bussonnier
enable test coverage on coveralls
r19539 - cd /tmp && iptest $GROUP --coverage xml && cd -
MinRK
test with Python 3.4 on Travis...
r16502
matrix:
exclude:
- python: 3.3
Matthias Bussonnier
Split js tests in N subgroups....
r19829 env: GROUP=js/base
- python: 3.3
env: GROUP=js/notebook
- python: 3.3
env: GROUP=js/tree
- python: 3.3
env: GROUP=js/widgets
Matthias Bussonnier
enable test coverage on coveralls
r19539
after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- coveralls