Skip to content

Commit 7085ff7

Browse files
author
Petr Sramek
committed
fix
1 parent e7639d2 commit 7085ff7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/actions/test/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ runs:
7676

7777
- name: 'Test with .NET CLI'
7878
shell: bash
79-
run: dotnet test ${{ inputs.test-project-glob-pattern }} --configuration ${{ inputs.build-configuration }} ${{ env.RUN_SETTINGS_ARGS }} --verbosity normal -- ${{ env.CODE_COVERAGE_ARGS }} ${{ env.TRX_LOGGER_ARGS }} --results-directory ${{ inputs.test-results-directory }}
79+
run: dotnet test ${{ inputs.test-project-glob-pattern }} --configuration ${{ inputs.build-configuration }} --verbosity normal -- ${{ env.RUN_SETTINGS_ARGS }} ${{ env.CODE_COVERAGE_ARGS }} ${{ env.TRX_LOGGER_ARGS }} --results-directory ${{ inputs.test-results-directory }}
8080

8181
- name: 'Upload test results'
8282
if: ${{ inputs.upload-test-artifacts == 'true' }}

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
- uses: ./.github/actions/test
9494
with:
9595
test-project-glob-pattern: ${{ vars.TEST_DEFAULT_GLOB_PATTERN }}
96-
test-runsettings-path: 'unit-test.runsettings'
96+
test-runsettings-path: '${{ github.workspace }}/unit-test.runsettings'
9797
test-results-directory: '${{ runner.temp }}/test-results/'
9898
# - run: dotnet tool install --global LiquidTestReports.Cli --prerelease
9999
# - run: ls -R ${{ runner.temp }}/test-results/

0 commit comments

Comments
 (0)