From 56fd91f82b9a69c540ebb506c2e8b84280d214ca Mon Sep 17 00:00:00 2001 From: Maikel Linke Date: Wed, 7 Oct 2015 19:10:44 +1100 Subject: [PATCH] CI server has to empty the cache if language files changed --- script/ci/run_tests.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/script/ci/run_tests.sh b/script/ci/run_tests.sh index efae0805a6..34d2472236 100755 --- a/script/ci/run_tests.sh +++ b/script/ci/run_tests.sh @@ -17,5 +17,8 @@ echo "--- Loading test database" bundle exec rake db:drop db:create db:schema:load bundle exec rake parallel:drop parallel:create parallel:load_schema +echo "--- Emptying cache" +rm tmp/cache/ -rf + echo "--- Running tests" bundle exec rake parallel:spec