From 32378266f0376ad13198eacddb0468c62d5033b9 Mon Sep 17 00:00:00 2001 From: realaravinth Date: Wed, 30 Mar 2022 10:22:27 +0530 Subject: [PATCH] fix: make test: run tests --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b529803..6447553 100644 --- a/Makefile +++ b/Makefile @@ -44,12 +44,12 @@ sqlx-offline-data: ## prepare sqlx offline data --all-features test: migrate ## Run tests + cargo test --no-fail-fast # cd database/db-sqlx-postgres &&\ # DATABASE_URL=${POSTGRES_DATABASE_URL}\ # cargo test --no-fail-fast # cd database/db-sqlx-sqlite &&\ # DATABASE_URL=${SQLITE_DATABASE_URL}\ -# cargo test --no-fail-fast xml-test-coverage: migrate ## Generate cobertura.xml test coverage cargo tarpaulin -t 1200 --out Xml --skip-clean --all-features --no-fail-fast #--workspace=database/db-sqlx-postgres,database/db-sqlx-sqlite,.