ci(aio): avoid printing too large PWA report (and restore print-logs.sh)

There have been some issues lately with Travis jobs failing due to
`print-log.sh`. This is likely due to trying to print the Lighthouse PWA report,
which is too large.
This commit stops printing that report (since it was rarely used and is pretty
easy to acquire when needed) and restores the `print-logs.sh` script (that was
temporarily removed with dfcca66fd).
This commit is contained in:
Georgios Kalpakas
2017-06-30 12:09:53 +03:00
committed by Pete Bacon Darwin
parent 8e00161601
commit d5dc53ead8
4 changed files with 3 additions and 7 deletions

View File

@ -39,5 +39,5 @@ esac
firebase deploy --message "Commit: $TRAVIS_COMMIT" --non-interactive --token "$firebaseToken"
# Run PWA-score tests
yarn test-pwa-score -- "$deployedUrl" "$MIN_PWA_SCORE" "$PWA_RESULTS_LOG"
yarn test-pwa-score -- "$deployedUrl" "$MIN_PWA_SCORE"
)