##// END OF EJS Templates
Merge pull request #2158 from Carreau/tuple_params...
Merge pull request #2158 from Carreau/tuple_params Remove tuple auto unpack in function definition This is for 2to3 compatibility., and also deactivate the application of the corresponding 2to3 fix when using python3 and setup.py.

File last commit:

r7633:2496c83f
r7887:072f5556 merge
Show More
.travis.yml
14 lines | 375 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
before_install:
- pip install --use-mirrors numpy
- easy_install -q pyzmq
install:
- python setup.py install -q
script:
- if [[ $TRAVIS_PYTHON_VERSION == '2.'* ]]; then iptest -w /tmp; fi
- if [[ $TRAVIS_PYTHON_VERSION == '3.'* ]]; then iptest3 -w /tmp; fi