From 65697d9d3c75862c41b84388f2ac3eb48779bc5e Mon Sep 17 00:00:00 2001 From: Todd Dembrey <todd.dembrey@torchbox.com> Date: Tue, 13 Mar 2018 12:36:47 +0000 Subject: [PATCH] Move the static file collection up to ensure that the other checks dont error --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index b13b12f49..f7f93a87b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -63,15 +63,15 @@ script: # Type check the project - mypy . + # Collect static + - python manage.py collectstatic --noinput --verbosity=0 + # Run system checks - python manage.py check # Check for missing migrations - python manage.py makemigrations --check --noinput --verbosity=0 - # Collect static - - python manage.py collectstatic --noinput --verbosity=0 - # Run tests - coverage run --source='.' manage.py test . -- GitLab