From be03da096e483f78e309a94d402d7c9baca4381a Mon Sep 17 00:00:00 2001 From: Aravinth Manivannan Date: Fri, 20 Oct 2023 03:07:44 +0530 Subject: [PATCH] fix: run tests sequentially to avoid race cond --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af67ab7..17d3a6e 100644 --- a/Makefile +++ b/Makefile @@ -86,7 +86,7 @@ sqlx-offline-data: ## prepare sqlx offline data test: frontend ## Run tests echo 'static/' && tree static || true echo 'tree/' && tree assets || true - cargo test --all-features --no-fail-fast + cargo test --all-features --no-fail-fast -j 1 xml-test-coverage: migrate ## Generate cobertura.xml test coverage cargo tarpaulin -t 1200 --out Xml