Skip to content

Commit

Permalink
Fix travis build for python3
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed Feb 27, 2012
1 parent 6c16f8c commit daeb7c4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .travis.yml
@@ -1,3 +1,4 @@
# http://travis-ci.org/#!/facebook/tornado
language: python
python:
- 2.6
Expand All @@ -6,4 +7,9 @@ python:
# TODO: install pycurl, twisted, etc (depends on python version)
install:
- python setup.py install
script: python -m tornado.test.runtests
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

0 comments on commit daeb7c4

Please sign in to comment.