This commit is contained in:
Mark McDowall 2023-12-31 19:49:45 -08:00
parent 8ed405adf2
commit eec4bb6580
2 changed files with 6 additions and 2 deletions

View File

@ -4,6 +4,9 @@ name: Run test on DLLs matching the specified pattern
description: Runs unit/integration tests
inputs:
artifact:
description: 'Test binary artifact'
required: true
pattern:
description: 'Pattern for DLLs'
required: true
@ -20,9 +23,9 @@ runs:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: tests-linux-x64
name: ${{ inputs.artifact }}
path: _tests
- name: Run tests
shell: bash
run: dotnet test Sonarr.*.Test.dll --filter "${{ inputs.filter }}"
run: dotnet test Sonarr.*.Test.dll --filter "${{ inputs.filter }}" --logger trx --results-directory "TestResults-${{ matrix.dotnet-version }}"

View File

@ -112,5 +112,6 @@ jobs:
- name: Test
uses: ./.github/actions/test
with:
artifact: tests-linux-x64
pattern: Sonarr.*.Test.dll
filter: TestCategory!=ManualTest&TestCategory!=WINDOWS&TestCategory!=IntegrationTest&TestCategory!=AutomationTest