##// END OF EJS Templates
"smart command mode" for ipdb (like pdb++)....
"smart command mode" for ipdb (like pdb++). If e.g. "c" is a variable currently visible, then "c" should print it instead of running the "continue" Pdb command. This idea was first implemented by pdb++. It is possible to force the standard pdb behavior (bypass variable checking) by prefixing the command with "!!", e.g. "!!c" to continue.

File last commit:

r21981:160d3472
r22311:85820d34
Show More
.travis.yml
21 lines | 571 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 "setuptools>=18.5"
- pip install -f travis-wheels/wheelhouse -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