We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47a22ab commit 3fd7a34Copy full SHA for 3fd7a34
.github/workflows/cdp.yml
@@ -69,6 +69,24 @@ jobs:
69
[io.compression.zipfile]::OpenRead($dst).Entries.Name | % { "- $_"}
70
shell: pwsh
71
72
+ - uses: darenm/[email protected]
73
+
74
+ - name: Test (new)
75
+ continue-on-error: true
76
+ run: |
77
+ cd $env:OutDir
78
+ pwd
79
+ vstest.console.exe *.UnitTests.dll --ListTests
80
+ vstest.console.exe *.UnitTests.dll /Parallel "/logger:console;verbosity=detailed" "/logger:trx;LogFileName=TestResults.trx"
81
82
+ - name: Generate test report (new)
83
+ uses: dorny/test-reporter@v1
84
+ with:
85
+ name: Tests Results (new)
86
+ path: ${{ env.OutDir }}*.trx
87
+ reporter: dotnet-trx
88
+ fail-on-error: true
89
90
- name: Test
91
uses: rusty-bender/vstest-action@main
92
with:
0 commit comments