0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-20 22:42:53 -05:00

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
This commit is contained in:
kirrg001 2019-03-07 10:35:37 +01:00
parent 3124d23ccf
commit e2757d18f8

View file

@ -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