##// END OF EJS Templates
Change types of some config items and adjust code accordingly...
Change types of some config items and adjust code accordingly Use Integer and Float instead of CInt and CFloat (per MinRK) Use ms instead of seconds for check period as the "HeartMonitor.period" also uses ms. Signed-off-by: Jan Schulz <jasc@gmx.net>

File last commit:

r7928:16b88195
r8287:1719e9da
Show More
.travis.yml
13 lines | 337 B | text/x-yaml | YamlLexer
# http://travis-ci.org/#!/ipython/ipython
language: python
python:
- 2.6
- 2.7
- 3.2
before_install:
- 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