From b0812864ac5214f96dc18bef0e14fcea08a68c01 Mon Sep 17 00:00:00 2001 From: James Allen Date: Thu, 14 Dec 2017 09:43:59 +0000 Subject: [PATCH] Clean up CI output --- services/web/Jenkinsfile | 2 +- services/web/Makefile | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/services/web/Jenkinsfile b/services/web/Jenkinsfile index 57df9c7091..152d980787 100644 --- a/services/web/Jenkinsfile +++ b/services/web/Jenkinsfile @@ -60,7 +60,7 @@ pipeline { sh 'git config --global core.logallrefupdates false' sh 'mv app/views/external/robots.txt public/robots.txt' sh 'mv app/views/external/googlebdb0f8f7f4a17241.html public/googlebdb0f8f7f4a17241.html' - sh 'npm install' + sh 'npm --quiet install' sh 'npm rebuild' // It's too easy to end up shrinkwrapping to an outdated version of translations. // Ensure translations are always latest, regardless of shrinkwrap diff --git a/services/web/Makefile b/services/web/Makefile index 558b59e5e6..046a0c1a81 100644 --- a/services/web/Makefile +++ b/services/web/Makefile @@ -74,7 +74,9 @@ test_acceptance_modules: docker-shared.yml test_acceptance_module: docker-shared.yml cd $(MODULE) && make test_acceptance -ci: install test +ci: + MOCHA_ARGS="--reporter tap" \ + $(MAKE) install test .PHONY: all add install update test test_unit test_unit_frontend test_acceptance \