Skip to content

Commit

Permalink
Merge pull request #377 from Lombiq/bug/no-edge-tests
Browse files Browse the repository at this point in the history
Quoting --filter for dotnet test, so the filter expression won't break the CLI
  • Loading branch information
Piedone authored Jul 24, 2024
2 parents 1922d7f + 150b019 commit 4d374c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/test-dotnet/Invoke-SolutionTests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ foreach ($test in $tests)
'--logger', '''console;verbosity=detailed'''
'--verbosity', $Verbosity
$BlameHangTimeout ? ('--blame-hang-timeout', $BlameHangTimeout, '--blame-hang-dump-type', 'full') : ''
$Filter ? '--filter', $Filter : ''
$Filter ? '--filter', "'$Filter'" : ''
$EnableDiagnosticMode ? '--diag DiagnosticLogs/dotnet-test.log' : ''
$test
)
Expand Down

0 comments on commit 4d374c4

Please sign in to comment.