From e2757d18f820b3661fac6ac698306a6b5536e4a4 Mon Sep 17 00:00:00 2001 From: kirrg001 Date: Thu, 7 Mar 2019 10:35:37 +0100 Subject: [PATCH] Added fix for cron job no issue - crob job is running acceptance tests and not regression tests - not 100% sure this is the cause, but let's try it --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 107c654503..9065718647 100644 --- a/.travis.yml +++ b/.travis.yml @@ -41,7 +41,7 @@ install: - if [ "$DB" == "sqlite3" ]; then yarn add --force sqlite3; fi # fix sqlite caching issues script: | - if [ "${TRAVIS_EVENT_TYPE}" = "cron" && "${TEST_SUITE}" != "lint" ]; then + if [ "${TRAVIS_EVENT_TYPE}" = "cron" ] && [ "${TEST_SUITE}" != "lint" ]; then yarn test:regression else yarn test