From 58bf61524df078ed2563725aa5e982bed51a4853 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 28 Mar 2019 21:07:19 +0000 Subject: build: fix skipping of flaky tests on Travis `PARALLEL_ARGS` is overwritten in the Makefile if `JOBS` is set. Use `CI_JS_SUITES` instead. PR-URL: https://github.com/nodejs/node/pull/27002 Reviewed-By: Refael Ackermann Reviewed-By: Rich Trott --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.travis.yml') diff --git a/.travis.yml b/.travis.yml index 4ab46e5b1b..87f4c38687 100644 --- a/.travis.yml +++ b/.travis.yml @@ -49,4 +49,4 @@ matrix: - ./configure - make -j2 V= script: - - PARALLEL_ARGS='--flaky-tests=skip' make -j1 test + - CI_JS_SUITES='--flaky-tests=skip default' make -j1 test -- cgit v1.2.3