From: Ben Darnell Date: Fri, 24 May 2013 03:12:05 +0000 (-0400) Subject: $TMPDIR isn't set on travis-ci. X-Git-Tag: v3.1.0~51 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8e2052f6cbba59aa0e6e0abb98713af477cc829c;p=thirdparty%2Ftornado.git $TMPDIR isn't set on travis-ci. --- diff --git a/.travis.yml b/.travis.yml index ced0dd63b..65c8384f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -36,4 +36,4 @@ script: - if [[ $TRAVIS_PYTHON_VERSION == 2* && $DEPS == true ]]; then python -m tornado.test.runtests --resolver=tornado.platform.twisted.TwistedResolver; fi - if [[ $TRAVIS_PYTHON_VERSION != pypy && $DEPS == true ]]; then python -m tornado.test.runtests --resolver=tornado.platform.caresresolver.CaresResolver; fi - if [[ $TRAVIS_PYTHON_VERSION == '3.3' ]]; then python -m tornado.test.runtests --ioloop_time_monotonic; fi - - if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $DEPS == true ]]; then cd ../docs && sphinx-build -E -n -W -b html . $TMPDIR/sphinx-html; fi + - if [[ $TRAVIS_PYTHON_VERSION == '2.7' && $DEPS == true ]]; then cd ../docs && mkdir sphinx-out && sphinx-build -E -n -W -b html . sphinx-out; fi