##// END OF EJS Templates
Fix color schemes in Linux...
Fix color schemes in Linux Object information found by prefixing object with a question mark (like int?) was printing garbled characters. git-bisect found 2b1c969628871300a4779963e8776b5a8e966f34 to be the offending commit. A refactoring in that commit forgot to add one color and also used the wrong object (it used InputTermColors instead of TermColors).

File last commit:

r21796:f6c7fa89
r21828:1c75e559
Show More
.travis.yml
20 lines | 554 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 3.5
- 3.4
- 3.3
- 2.7
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 -f travis-wheels/wheelhouse -r requirements.txt -e file://$PWD#egg=ipython[test]
- pip install codecov
script:
- cd /tmp && iptest --coverage xml && cd -
after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- codecov