From 724fc8d5641050a8c208b7f747fe8a796c071f96 Mon Sep 17 00:00:00 2001 From: Richard Lau Date: Thu, 28 Mar 2019 21:07:19 +0000 Subject: [PATCH] build: fix skipping of flaky tests on Travis `PARALLEL_ARGS` is overwritten in the Makefile if `JOBS` is set. Use `CI_JS_SUITES` instead. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2569b44ec39e83..d75df562dcc669 100644 --- a/.travis.yml +++ b/.travis.yml @@ -31,4 +31,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