##// END OF EJS Templates
Remove -i options from mv, rm and cp aliases...
Remove -i options from mv, rm and cp aliases This was arguably useful in the terminal, but it means these aliases can't be used from any of the ZMQ frontends. And users familiar with the shell shouldn't find the default (non -i) behaviour surprising. Closes gh-5729, which accidentally included an unrelated change.

File last commit:

r16540:22b2d461
r16641:0fb126bd
Show More
.travis.yml
26 lines | 770 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:
MinRK
reorder travis so slowest groups start first
r16540 - 3.4
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 - 2.7
Thomas Kluyver
Tell Travis CI to test on Python 3.3 as well.
r8987 - 3.3
MinRK
add test group env grid
r16471 env:
- GROUP=js
MinRK
reorder travis so slowest groups start first
r16540 - GROUP=
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 before_install:
Paul Ivanov
workaround for travis-ci/travis-cookbooks#155
r13267 # workaround for https://github.com/travis-ci/travis-cookbooks/issues/155
- sudo rm -rf /dev/shm && sudo ln -s /run/shm /dev/shm
Paul Ivanov
add Pierre Carrier's PPA for CasperJS & PhantomJS
r13273 # Pierre Carrier's PPA for PhantomJS and CasperJS
MinRK
time all the things
r16469 - time sudo add-apt-repository -y ppa:pcarrier/ppa
- time sudo apt-get update
- time sudo apt-get install pandoc casperjs nodejs libzmq3-dev
MinRK
try wheels for faster dependency installation
r16476 - time pip install -f https://nipy.bic.berkeley.edu/wheelhouse/travis jinja2 sphinx pygments tornado requests mock pyzmq
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 install:
MinRK
time all the things
r16469 - time python setup.py install -q
Marc Abramowitz
Add .travis.yml for Travis CI (http://travis-ci.org/)
r7633 script:
MinRK
add test group env grid
r16471 - cd /tmp && iptest $GROUP
MinRK
test with Python 3.4 on Travis...
r16502
matrix:
exclude:
- python: 3.3
env: GROUP=js