File tree Expand file tree Collapse file tree
.github/actions/testing/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -59,21 +59,21 @@ runs:
5959 DOTNET_USE_TEST_PLATFORM : ' 1'
6060 run : |
6161 ARGS=()
62- ARGS+=(" --project ${{ inputs.project-path }}" )
63- ARGS+=(--configuration "${{ inputs.build-configuration }}")
64- ARGS+=(--results-directory "${{ inputs.test-results-directory }}")
62+ ARGS+=(--project ${{ inputs.project-path }} )
63+ ARGS+=(--configuration "${{ inputs.build-configuration }}" )
64+ ARGS+=(--results-directory "${{ inputs.test-results-directory }}" )
6565
6666 if [[ "${{ inputs.use-trf-logger }}" == "true" ]]; then
67- ARGS+=(--logger:trx)
67+ ARGS+=(--logger:trx )
6868 fi
6969
7070 # Native Code Coverage switches & filters
7171 if [[ "${{ inputs.collect-code-coverage }}" == "true" ]]; then
72- ARGS+=(--coverage " )
73- ARGS+=(--coverage-output-format "${{ inputs.code-coverage-output-format }}")
72+ ARGS+=(--coverage )
73+ ARGS+=(--coverage-output-format "${{ inputs.code-coverage-output-format }}" )
7474
7575 if [[ -n "${{ inputs.code-coverage-settings-file }}" ]]; then
76- ARGS+=(--coverage-settings:"${{ inputs.code-coverage-settings-file }}")
76+ ARGS+=(--coverage-settings:"${{ inputs.code-coverage-settings-file }}" )
7777 fi
7878 fi
7979
You can’t perform that action at this time.
0 commit comments