##// END OF EJS Templates
Make line_input_checker=True the default for InputSplitter....
Make line_input_checker=True the default for InputSplitter. The Qt console needs to use it in line_input_checker mode, but can't specify arguments in case it's using the InputSplitter base class. Closes gh-3248

File last commit:

r8987:c06f654b
r10493:94f1c9c7
Show More
.travis.yml
14 lines | 347 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.6
- 2.7
- 3.2
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
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi