From 9ec8c9bd0c2cb334cc418fe5defc52cfd54231d2 Mon Sep 17 00:00:00 2001 From: Sam Warren Date: Thu, 10 Oct 2024 12:11:27 -0600 Subject: [PATCH] Update dockerfile test commands --- ess/src/API/Dockerfile | 2 +- registrants/src/API/Dockerfile | 2 +- responders/src/API/Dockerfile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ess/src/API/Dockerfile b/ess/src/API/Dockerfile index 1cd87ff29..75e0140fc 100644 --- a/ess/src/API/Dockerfile +++ b/ess/src/API/Dockerfile @@ -35,7 +35,7 @@ COPY --from=shared . . COPY . . # run unit tests -RUN dotnet test -c Release --filter "Category!=IntegrationTest" +RUN dotnet test -c Release --filter "Category!=IntegrationTest" "EMBC.Tests.Unit.ESS/EMBC.Tests.Unit.ESS.csproj" FROM build AS publish # build diff --git a/registrants/src/API/Dockerfile b/registrants/src/API/Dockerfile index f8d019d54..ca981db42 100644 --- a/registrants/src/API/Dockerfile +++ b/registrants/src/API/Dockerfile @@ -35,7 +35,7 @@ COPY --from=shared . . COPY . . # run unit tests -RUN dotnet test -c Release +RUN dotnet test -c Release "EMBC.Tests.Unit.Registrants.API/EMBC.Tests.Unit.Registrants.API.csproj" # build FROM build AS publish diff --git a/responders/src/API/Dockerfile b/responders/src/API/Dockerfile index 7aec64dfd..7dd74aa9d 100644 --- a/responders/src/API/Dockerfile +++ b/responders/src/API/Dockerfile @@ -34,7 +34,7 @@ COPY --from=shared . . COPY . . # run unit tests -RUN dotnet test -c Release +RUN dotnet test -c Release "EMBC.Tests.Unit.Responders.API/EMBC.Tests.Unit.Responders.API.csproj" # build FROM build AS publish