Tests
This commit is contained in:
parent
8ed405adf2
commit
eec4bb6580
|
@ -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 }}"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue