Skip to content

Commit 235cb17

Browse files
committed
Add .travis.yml file to branch2.2 just to make everything green.
1 parent a1bb663 commit 235cb17

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# http://travis-ci.org/#!/facebook/tornado
2+
language: python
3+
# The build of 2.6 on travis has a bug related to ssl (it segfaults in
4+
# test_sslv2_fail)
5+
python:
6+
- 2.7
7+
- 3.2
8+
# TODO: install pycurl, twisted, etc (depends on python version)
9+
install:
10+
- python setup.py install
11+
script:
12+
# Must cd somewhere else so python3 doesn't get confused and run
13+
# the python2 code from the current directory instead of the installed
14+
# 2to3 version.
15+
- cd maint
16+
- python -m tornado.test.runtests

0 commit comments

Comments
 (0)