From d903fbe6bfd5ad4c7e157636c2596f081092c65f Mon Sep 17 00:00:00 2001 From: Chris Garrity Date: Thu, 20 Jun 2019 14:48:53 -0400 Subject: [PATCH] update makefile for new tap Add options anywhere we run tap to make it work as it did previously --- Makefile | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index 9d24a47b6..62ac05b66 100644 --- a/Makefile +++ b/Makefile @@ -71,28 +71,25 @@ lint: $(ESLINT) . --ext .js,.jsx,.json unit: - $(TAP) ./test/unit/*.js - -functional: - $(TAP) ./test/functional/*.js + $(TAP) ./test/unit/*.js --no-coverage -R classic integration: - $(TAP) ./test/integration/*.js + $(TAP) ./test/integration/*.js --no-coverage -R classic smoke: - $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 + $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 --no-coverage -R classic smoke-verbose: - $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec + $(TAP) ./test/integration/smoke-testing/*.js --timeout=3600 -R spec --no-coverage -R classic localization: - $(TAP) ./test/localization/*.js + $(TAP) ./test/localization/*.js --no-coverage -R classic tap: - $(TAP) ./test/{unit,functional,localization}/*.js + $(TAP) ./test/{unit,localization}/*.js --no-coverage -R classic coverage: - $(TAP) ./test/{unit,functional,localization}/*.js --coverage --coverage-report=lcov + $(TAP) ./test/{unit,localization}/*.js --coverage --coverage-report=lcov # ------------------------------------