From 7a5df55e386bb3c77dfa34bfbafd4c4e489fa4c1 Mon Sep 17 00:00:00 2001 From: Raphael Michel Date: Thu, 12 Feb 2015 00:43:07 +0100 Subject: [PATCH] Travis currently likes to fail because the tests do not output anything for 10 minutes, more often with Python 3.2 than with others. This could be a problem with our test code, but just as likely a problem with Travis, so we'll try whether a travis_wait command helps. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index dbd20b52aa..66d3b128c7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,6 +11,6 @@ before_script: - python manage.py check - python manage.py validate script: - - coverage run manage.py test + - travis_wait coverage run manage.py test after_success: - coveralls