We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eb0c47 commit 5cabf1cCopy full SHA for 5cabf1c
1 file changed
.github/actions/testing/test/action.yml
@@ -82,7 +82,9 @@ runs:
82
83
- name: 'Test with .NET CLI'
84
shell: bash
85
- run: dotnet test --use-test-platform ${{ inputs.project-path }} --configuration ${{ inputs.build-configuration }} ${{ env.TRX_LOGGER_ARGS }} --results-directory ${{ inputs.test-results-directory }} ${{ env.CODE_COVERAGE_ARGS }}
+ run: dotnet test ${{ inputs.project-path }} --configuration ${{ inputs.build-configuration }} ${{ env.TRX_LOGGER_ARGS }} --results-directory ${{ inputs.test-results-directory }} ${{ env.CODE_COVERAGE_ARGS }}
86
+ env:
87
+ DOTNET_USE_TEST_PLATFORM: '1'
88
89
- name: 'Upload test results'
90
if: ${{ inputs.upload-test-artifacts == 'true' }}
0 commit comments