Fix again

This commit is contained in:
Alex Hyett 2023-07-10 12:15:47 +01:00
parent 652a062790
commit 32c90e508f

View file

@ -20,7 +20,7 @@ jobs:
run: dotnet test --filter Category=Unit --no-restore --verbosity normal run: dotnet test --filter Category=Unit --no-restore --verbosity normal
- uses: canastro/copy-file-action@master - uses: canastro/copy-file-action@master
with: with:
source: "test/**/TestResults/Unit.Tests.trx" source: "test/**/TestResults/*.Unit.Tests.trx"
target: "TestResults" target: "TestResults"
- name: Start containers - name: Start containers
run: docker-compose -f "docker-compose.yml" up -d --build run: docker-compose -f "docker-compose.yml" up -d --build
@ -29,6 +29,10 @@ jobs:
shell: bash shell: bash
- name: Run Integration Tests - name: Run Integration Tests
run: dotnet test --filter Category=Integration --no-restore --verbosity normal run: dotnet test --filter Category=Integration --no-restore --verbosity normal
- uses: canastro/copy-file-action@master
with:
source: "test/**/TestResults/*.Integration.Tests.trx"
target: "TestResults"
- name: Test Report - name: Test Report
uses: dorny/test-reporter@v1 uses: dorny/test-reporter@v1
if: success() || failure() if: success() || failure()