From b729aeb99d382082545217fe8e0bf5ba2bbd8ee2 Mon Sep 17 00:00:00 2001 From: Tom Kazimiers Date: Tue, 9 Mar 2021 23:14:35 +0100 Subject: [PATCH] Travis CI: wait longer on Python tests to finish It seems PyPy runs a bit longer (~40min). --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 525556a054..084f954bbd 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,7 +54,7 @@ script: # a non-zero exit code (1) when a new migration is created and otherwise zero. - python manage.py makemigrations catmaid # Run tests - - coverage run manage.py test catmaid.tests + - travis_wait 45 coverage run manage.py test catmaid.tests # Remove login requirement from QUnit test page - sed -i 's/login_required(\([^)]*\))/\1/g' ../applications/catmaid/urls.py - python -Wall -Wignore::ImportWarning manage.py runserver &