mirror of
https://github.com/collinbarrett/FilterLists.git
synced 2026-03-11 09:04:27 +00:00
specify dotnet test logger
This commit is contained in:
parent
7ce8f07d3f
commit
45ea7845f4
1 changed files with 2 additions and 2 deletions
|
|
@ -30,7 +30,7 @@ RUN dotnet build -c Release --no-restore
|
|||
|
||||
# init Data.Tests
|
||||
FROM build AS test-data
|
||||
ENTRYPOINT ["dotnet", "test"]
|
||||
ENTRYPOINT ["dotnet", "test", "--logger:trx"]
|
||||
|
||||
# restore Data.Tests
|
||||
WORKDIR /app/tests/FilterLists.Data.Tests
|
||||
|
|
@ -44,7 +44,7 @@ COPY data/. data/
|
|||
|
||||
# init Services.Tests
|
||||
FROM build AS test-services
|
||||
ENTRYPOINT ["dotnet", "test"]
|
||||
ENTRYPOINT ["dotnet", "test", "--logger:trx"]
|
||||
|
||||
# restore Services.Tests
|
||||
WORKDIR /app/tests/FilterLists.Services.Tests
|
||||
|
|
|
|||
Loading…
Reference in a new issue