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 45eb430 commit 8983421Copy full SHA for 8983421
.github/workflows/nightlybuild.yml
@@ -48,7 +48,7 @@ jobs:
48
- name: Extract Failed Tests (PowerShell)
49
if: ${{ failure() }}
50
run: |
51
- $xml = [xml](Get-Content test-results.trx)
+ $xml = [xml](Get-Content /home/runner/work/TransactionProcessor/TransactionProcessor/TransactionProcessor.IntegrationTests/test-results.trx)
52
$failedTests = $xml.TestRun.Results.UnitTestResult | Where-Object { $_.outcome -eq "Failed" }
53
if ($failedTests) {
54
Write-Host "::error::Failed Tests:"
0 commit comments