##// END OF EJS Templates
create_inputhook_qt4 wants an InputHookManager object as its first...
create_inputhook_qt4 wants an InputHookManager object as its first argument, not an InputHookBase. However, we get away with supplying the wrong object until someone hits ctrl-c. Passing the right object makes graceful ctrl-c event loop integration work properly, rather than causing IPython to exit. This seems like a straightforward fix, but I may be missing something.

File last commit:

r21310:85bd917e
r21347:88bc745d
Show More
.travis.yml
22 lines | 603 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- "nightly"
- 3.4
- 3.3
- 2.7
sudo: false
matrix:
allow_failures:
- python : "nightly"
before_install:
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
- 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
install:
- pip install -f travis-wheels/wheelhouse -r requirements.txt -e file://$PWD#egg=ipython[test] coveralls
script:
- cd /tmp && iptest --coverage xml && cd -
after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- coveralls