##// END OF EJS Templates
Remove the "autoedit_syntax" feature....
Remove the "autoedit_syntax" feature. IPython used to (a long time ago, in a galaxy far far away) have the ability to automatically open an editor in case a wild syntax error appears. The configuration option to enable that was not working for a few years, and apparently we by mistake re enabled it, to discover that the feature is actually broken. So this plainly remove the code to support this feature, at the exception of the `fix_error_editor` hook. Indeed it is public API, so for now as it seem to be used only for this feature, we'll just raise a UserWarning (there is roughly 0 chance of this being tested as it's used mostly interactively, so DeprecationWarnings would be unseen). We'll remove later if no complaints Closes #9603

File last commit:

r22473:2b41af28
r22576:b7d03ed6
Show More
.travis.yml
26 lines | 640 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:
Matthias Bussonnier
'enable python 3.6 nightly'
r22398 - "nightly"
Matthias Bussonnier
Update travis to 3.5 (instead of 3.5.0.rc4)
r21775 - 3.5
MinRK
reorder travis so slowest groups start first
r16540 - 3.4
Min RK
remove downstream projects from travis
r21248 - 3.3
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 - 2.7
Min RK
expedite travis...
r19868 sudo: false
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
Min RK
use `pip install .[all]` on travis...
r18565 - git clone --quiet --depth 1 https://github.com/minrk/travis-wheels travis-wheels
Min RK
remove downstream projects from travis
r21248 - 'if [[ $GROUP != js* ]]; then COVERAGE=""; fi'
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 install:
Matthias Bussonnier
Check setuptools version in setup.py...
r21981 - pip install "setuptools>=18.5"
Min RK
remove unneeded requirements.txt
r21931 - pip install -f travis-wheels/wheelhouse -e file://$PWD#egg=ipython[test]
Matthias Bussonnier
enable codecov
r21791 - pip install codecov
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 script:
Min RK
remove downstream projects from travis
r21248 - cd /tmp && iptest --coverage xml && cd -
Matthias Bussonnier
enable test coverage on coveralls
r19539 after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
Matthias Bussonnier
enable codecov
r21791 - codecov
Min RK
allow failures on nightly Python...
r22473
matrix:
allow_failures:
python: nightly