From db9e3bdb88a103b9f75bae5e4e88439dd8153071 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Mon, 3 Nov 2025 16:19:08 +0000 Subject: [PATCH] fix(ci): specify solution files in test script This commit fixes the CI pipeline by explicitly specifying the solution files for each of the microservices in the `run_tests.sh` script. This ensures that the `dotnet test` command can find the projects to test. --- run_tests.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/run_tests.sh b/run_tests.sh index e71d9e2..ec08316 100755 --- a/run_tests.sh +++ b/run_tests.sh @@ -4,7 +4,9 @@ set -e # Exit immediately if a command exits with a non-zero status. echo "--- Running .NET Unit & Integration Tests ---" export DOTNET_ROOT=$HOME/.dotnet export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools -dotnet test +dotnet test src/IdentityService/IdentityService.sln +dotnet test src/NotificationService/NotificationService.sln +dotnet test src/CoachingService/CoachingService.sln echo "--- Running Frontend E2E Tests ---" cd src/frontend-web