Skip to content

Commit

Permalink
Update dockerfile test commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sam-warren committed Oct 10, 2024
1 parent c4eff58 commit 9ec8c9b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ess/src/API/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion registrants/src/API/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion responders/src/API/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9ec8c9b

Please sign in to comment.