From 44d43c8096d24b66f8da96550b239b8bdce90f8b Mon Sep 17 00:00:00 2001 From: Anderson Toshiyuki Sasaki Date: Wed, 14 Feb 2024 10:07:06 +0100 Subject: [PATCH] tests/run.sh: Run tarpaulin with a single thread This is to avoid frequent deadlocks on CI. Signed-off-by: Anderson Toshiyuki Sasaki --- tests/run.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/run.sh b/tests/run.sh index c08398b9..b120313f 100755 --- a/tests/run.sh +++ b/tests/run.sh @@ -47,4 +47,5 @@ cargo tarpaulin --verbose \ --ignore-panics --ignore-tests \ --out Html --out Json \ --all-features \ - --engine llvm + --engine llvm \ + -- --test-threads=1