From 360b632881091ea4798005f16267950c397bd233 Mon Sep 17 00:00:00 2001 From: Brian Ng Date: Mon, 2 Apr 2018 15:07:11 -0500 Subject: [PATCH] Remove setting BABEL_ENV to test by default in makefile --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index ad9debee92..7926e7e730 100644 --- a/Makefile +++ b/Makefile @@ -2,8 +2,6 @@ MAKEFLAGS = -j1 FLOW_COMMIT = 622bbc4f07acb77eb1109830c70815f827401d90 TEST262_COMMIT = 52f70e2f637731aae92a9c9a2d831310c3ab2e1e -export BABEL_ENV = test - # Fix color output until TravisCI fixes https://github.com/travis-ci/travis-ci/issues/7967 export FORCE_COLOR = true @@ -69,7 +67,7 @@ test-clean: $(call clean-source-test, $(source))) test-only: - ./scripts/test.sh + BABEL_ENV=test ./scripts/test.sh make test-clean test: lint test-only @@ -79,7 +77,7 @@ test-ci: bootstrap test-only test-ci-coverage: SHELL:=/bin/bash test-ci-coverage: BABEL_COVERAGE=true BABEL_ENV=test make bootstrap - TEST_TYPE=cov ./scripts/test-cov.sh + BABEL_ENV=test TEST_TYPE=cov ./scripts/test-cov.sh bash <(curl -s https://codecov.io/bash) -f coverage/coverage-final.json bootstrap-flow: