2012-02-27 18:15:48 +00:00
|
|
|
# http://travis-ci.org/#!/facebook/tornado
|
2012-02-27 18:09:46 +00:00
|
|
|
language: python
|
|
|
|
python:
|
2012-06-17 06:46:03 +00:00
|
|
|
- 2.6
|
2012-02-27 18:09:46 +00:00
|
|
|
- 2.7
|
|
|
|
- 3.2
|
2012-06-17 06:46:03 +00:00
|
|
|
matrix:
|
|
|
|
allow_failures:
|
|
|
|
# The build of 2.6 on travis has a bug related to ssl (it segfaults in
|
|
|
|
# test_sslv2_fail)
|
|
|
|
- python: 2.6
|
2012-02-27 18:09:46 +00:00
|
|
|
# TODO: install pycurl, twisted, etc (depends on python version)
|
|
|
|
install:
|
|
|
|
- python setup.py install
|
2012-02-27 18:15:48 +00:00
|
|
|
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
|
2012-04-19 05:56:14 +00:00
|
|
|
- python -m tornado.test.runtests
|