From c1362a3190977b76e317b8af26c8e89932bbd91e Mon Sep 17 00:00:00 2001 From: Javier Cicchelli Date: Thu, 13 Mar 2025 00:57:55 +0100 Subject: [PATCH] Renamed the "test" target of the Makefile in the project as "tests" due to an issue with the former naming. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 553b12b..8fa67b8 100644 --- a/Makefile +++ b/Makefile @@ -15,7 +15,7 @@ reset: ## Resets the complete SPM cache/build folder from the package. run: ## Runs the project locally. @swift run -c release -test: ## Runs all the test cases of the project. +tests: ## Runs all the test cases of the project. @swift test --enable-swift-testing update: ## Updates the SPM package dependencies.