File tree Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Expand file tree Collapse file tree 1 file changed +1
-5
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,6 @@ inputs:
13
13
description : ' Build configuration. Default: Release'
14
14
required : false
15
15
default : ' Release'
16
- build-platform :
17
- description : ' Build platform. Deafult: Any CPU'
18
- required : false
19
- default : ' Any CPU'
20
16
test-project-glob-pattern :
21
17
description : ' Search pattern for test projects. Default: **/*Tests.csproj'
22
18
required : false
69
65
TRX_LOGGER_ARGS : " ${{ inputs.test-result-logger != '' && ' --report-trx' || '' }}"
70
66
RUN_SETTINGS_ARGS : " ${{ inputs.test-runsettings-path != '' && '--settings inputs.test-runsettings-path' || '' }}"
71
67
CODE_COVERAGE_ARGS : " ${{ inputs.collect-code-coverage == 'true' && '--coverage --coverage-output-format inputs.code-coverage-output-format' || '' }}"
72
- run : dotnet test ${{ inputs.test-project-glob-pattern }} --configuration ${{ inputs.build-configuration }} /p:Platform="${{ inputs.build-platform }}" --verbosity normal -- ${{ env.CODE_COVERAGE_ARGS }} ${{ env.RUN_SETTINGS_ARGS }} --results-directory ${{ inputs.test-results-directory }}
68
+ run : dotnet test ${{ inputs.test-project-glob-pattern }} --configuration ${{ inputs.build-configuration }} --verbosity normal -- ${{ env.CODE_COVERAGE_ARGS }} ${{ env.RUN_SETTINGS_ARGS }} --results-directory ${{ inputs.test-results-directory }}
73
69
74
70
- name : ' Upload test results'
75
71
if : ${{ inputs.upload-test-artifacts == 'true' }}
You can’t perform that action at this time.
0 commit comments