From 0676e5104417d3340a9f8c11a5ff00dd8b88f30d Mon Sep 17 00:00:00 2001 From: Tom Price Date: Wed, 9 Sep 2015 16:13:54 +0100 Subject: [PATCH] Run collect static to prevent the manifest being out of date, resulting in tests failing --- wercker.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/wercker.yml b/wercker.yml index a2a3f6d0..c2749a3e 100644 --- a/wercker.yml +++ b/wercker.yml @@ -84,6 +84,12 @@ build: code: | pip install coverage + # Collect static files so the manifest storage knows where to look + - script: + name: collect static + code: | + python manage.py collectstatic --noinput + # Run python tests - script: name: run tests