##// END OF EJS Templates
Remove old unused class...
Remove old unused class It seem unused in our codebase. The only place where it is used in github import from genutils which don't exist in IPython. Closes ipython/ipython#14

File last commit:

r21310:85bd917e
r21439:a33a0632
Show More
.travis.yml
22 lines | 603 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- "nightly"
- 3.4
- 3.3
- 2.7
sudo: false
matrix:
allow_failures:
- python : "nightly"
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] coveralls
script:
- cd /tmp && iptest --coverage xml && cd -
after_success:
- cp /tmp/ipy_coverage.xml ./
- cp /tmp/.coverage ./
- coveralls