From 95407fdeaf9a9137314d84a5ff465bf76a037ec6 Mon Sep 17 00:00:00 2001 From: Sam Alba Date: Fri, 17 Dec 2021 13:17:04 -0800 Subject: [PATCH] tests: do not parallelize tests within bats files + report failure and passing tests Signed-off-by: Sam Alba --- tests/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/package.json b/tests/package.json index 21469ef1..4a8cd1da 100644 --- a/tests/package.json +++ b/tests/package.json @@ -1,7 +1,7 @@ { "license": "Apache-2.0", "scripts": { - "test": "bats --report-formatter junit --jobs 4 ." + "test": "bats --jobs 4 --show-output-of-passing-tests --print-output-on-failure --no-parallelize-within-files ." }, "devDependencies": { "bats": "https://github.com/bats-core/bats-core#master",