]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Test Python 3.4 on Travis. 1055/head
authorMarc Schlaich <marc.schlaich@googlemail.com>
Mon, 12 May 2014 08:00:35 +0000 (10:00 +0200)
committerMarc Schlaich <marc.schlaich@googlemail.com>
Mon, 12 May 2014 08:00:35 +0000 (10:00 +0200)
.travis.yml

index fbeef8db5ef0720cc8fce11d47b075bfad373a0a..3f83782709f25a8f3f54323e9f69313c7cb52643 100644 (file)
@@ -6,6 +6,7 @@ python:
     - pypy
     - 3.2
     - 3.3
+    - 3.4
 
 env:
     - DEPS=true
@@ -19,6 +20,7 @@ install:
     - if [[ $TRAVIS_PYTHON_VERSION == 'pypy' && $DEPS == true ]]; then pip install --use-mirrors futures mock; fi
     - if [[ $TRAVIS_PYTHON_VERSION == '3.2' && $DEPS == true ]]; then pip install --use-mirrors pycares mock; fi
     - if [[ $TRAVIS_PYTHON_VERSION == '3.3' && $DEPS == true ]]; then pip install --use-mirrors pycares; fi
+    - if [[ $TRAVIS_PYTHON_VERSION == '3.4' && $DEPS == true ]]; then pip install --use-mirrors pycares; fi
     # On travis the extension should always be built
     - if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then export TORNADO_EXTENSION=1; fi
     - python setup.py install
@@ -48,8 +50,9 @@ script:
     - if [[ $TRAVIS_PYTHON_VERSION == 2* && $DEPS == true ]]; then python $TARGET --resolver=tornado.platform.twisted.TwistedResolver; fi
     - if [[ $TRAVIS_PYTHON_VERSION != pypy && $DEPS == true ]]; then python $TARGET --resolver=tornado.platform.caresresolver.CaresResolver; fi
     - if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then python $TARGET --ioloop_time_monotonic; fi
+    - if [[ $TRAVIS_PYTHON_VERSION == '3.4' ]]; then python $TARGET --ioloop_time_monotonic; fi
     - export TORNADO_EXTENSION=0
     - if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $DEPS == true ]]; then cd ../docs && mkdir sphinx-out && sphinx-build -E -n -W -b html . sphinx-out; fi
 
 after_success:
-    coveralls
\ No newline at end of file
+    coveralls