##// END OF EJS Templates
Fix error in completer when the cursor position is at the start of a...
Fix error in completer when the cursor position is at the start of a string.

File last commit:

r23194:0c90d12b
r23461:c39010d6
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