##// END OF EJS Templates
Respect completions display style in terminal debugger...
Respect completions display style in terminal debugger Make the debugger prompt use the same completions style as the main IPython prompt. Closes gh-9746

File last commit:

r23194:0c90d12b
r23371:8a92903a
Show More
.travis.yml
26 lines | 676 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- "nightly"
- 3.6
- 3.5
- 3.4
- 3.3
sudo: false
before_install:
- git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
- 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
install:
- pip install "setuptools>=18.5" pip --upgrade
- pip install -f travis-wheels/wheelhouse -e file://$PWD#egg=ipython[test] --upgrade
- pip install codecov --upgrade
script:
- cd /tmp && iptest --coverage xml && cd -
after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- codecov
matrix:
allow_failures:
- python: nightly