From: Ben Darnell Date: Tue, 24 Apr 2012 05:25:16 +0000 (-0700) Subject: Add .travis.yml file to branch2.2 just to make everything green. X-Git-Tag: v2.3.0~48^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=235cb17a0ae1b23d4eee592f358bf84707d89edc;p=thirdparty%2Ftornado.git Add .travis.yml file to branch2.2 just to make everything green. --- diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..b928c44b3 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,16 @@ +# http://travis-ci.org/#!/facebook/tornado +language: python +# The build of 2.6 on travis has a bug related to ssl (it segfaults in +# test_sslv2_fail) +python: + - 2.7 + - 3.2 +# TODO: install pycurl, twisted, etc (depends on python version) +install: + - python setup.py install +script: + # Must cd somewhere else so python3 doesn't get confused and run + # the python2 code from the current directory instead of the installed + # 2to3 version. + - cd maint + - python -m tornado.test.runtests