From ec25a36b3c407fd4c582e894f9f2897e3ab5d9de Mon Sep 17 00:00:00 2001 From: David Goss Date: Thu, 27 May 2021 15:22:57 +0100 Subject: [PATCH 1/2] add tag to feature --- features/publish.feature | 1 + 1 file changed, 1 insertion(+) diff --git a/features/publish.feature b/features/publish.feature index c86d36c52..c93c04653 100644 --- a/features/publish.feature +++ b/features/publish.feature @@ -1,3 +1,4 @@ +@flaky Feature: Publish reports Background: From dfd9efa11cdb13152b8d988f23d5bbd8e1259257 Mon Sep 17 00:00:00 2001 From: David Goss Date: Thu, 27 May 2021 15:29:20 +0100 Subject: [PATCH 2/2] retry config for feature-test run --- cucumber.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cucumber.js b/cucumber.js index 9a2445594..05310f275 100644 --- a/cucumber.js +++ b/cucumber.js @@ -6,6 +6,8 @@ const feature = [ '--format usage:usage.txt', '--format message:messages.ndjson', '--format html:html-formatter.html', + '--retry 2', + '--retry-tag-filter @flaky', '--publish-quiet', ].join(' ')