From 55eb4c2888881034e991cdc7503e7da3c367efa1 Mon Sep 17 00:00:00 2001 From: Anna Henningsen Date: Sat, 30 Mar 2019 16:34:56 +0100 Subject: [PATCH] build: run flaky tests in Travis MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Skipping flaky tests in CI is an anti-pattern that should be avoided, as we do in our ownCI. Failing flaky tests don’t need to be blockers for a green CI result, but they should be run and reported *somehow*. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 5ca5740a0cd15d..576de336e2df11 100644 --- a/.travis.yml +++ b/.travis.yml @@ -65,4 +65,4 @@ jobs: - make -j2 > /dev/null - make -j1 build-addons build-js-native-api-tests build-node-api-tests > /dev/null script: - - JOBS=2 FLAKY_TESTS=skip make -s -j1 V= test-ci | grep -F -e "---" -e "..." -v + - JOBS=2 FLAKY_TESTS=dontcare make -s -j1 V= test-ci | grep -F -e "---" -e "..." -v