From 83058bee35c7540c814afa9825814f55b3f1153b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Cuadrado=20Juan?= Date: Tue, 22 Oct 2024 12:10:40 +0200 Subject: [PATCH] ci: Set --implicit-test-threads for tarpaulin MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is in hopes of reducing tarpaulin time below 15 mins, so it fits in GHA timeout. Signed-off-by: VĂ­ctor Cuadrado Juan --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5f2080d0..33e9c752 100644 --- a/Makefile +++ b/Makefile @@ -24,7 +24,7 @@ coverage: coverage-unit-tests coverage-e2e-tests .PHONY: coverage-unit-tests coverage-unit-tests: cargo tarpaulin --verbose --skip-clean --engine=llvm \ - --all-features --bins --follow-exec \ + --all-features --implicit-test-threads --bins \ --out xml --out html --output-dir coverage/unit-tests .PHONY: coverage-e2e-tests