Skip to content

Commit

Permalink
Attempting to simplify test listing
Browse files Browse the repository at this point in the history
  • Loading branch information
Piedone committed Nov 20, 2022
1 parent ba97b86 commit 7405e25
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 @@ -32,7 +32,7 @@ $tests = dotnet sln list |
Select-String -NotMatch "Lombiq.Tests.UI.csproj" |
Select-String -NotMatch "Lombiq.Tests.csproj" |
Where-Object {
$result = dotnet test --no-build --configuration Release --list-tests --verbosity $Verbosity $_ 2>&1 | Out-String -Width 9999
$result = dotnet test --no-build --list-tests --verbosity $Verbosity $_ 2>&1 | Out-String -Width 9999
-not [string]::IsNullOrEmpty($result) -and $result.Contains("The following Tests are available")
}

Expand Down

0 comments on commit 7405e25

Please sign in to comment.