We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1bb663 commit 235cb17Copy full SHA for 235cb17
.travis.yml
@@ -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