Skip to content

Commit

Permalink
Do not capture test output on CI (#4765)
Browse files Browse the repository at this point in the history
  • Loading branch information
Evangelink authored Jan 23, 2025
1 parent 14ab0b1 commit 55ced74
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions test/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<EnableCodeCoverage Condition=" '$(EnableCodeCoverage)' == '' ">true</EnableCodeCoverage>
<DefineConstants Condition=" '$(PublishAot)' == 'true' ">$(DefineConstants);NATIVE_AOT</DefineConstants>
<DefineConstants Condition=" '$(EnableCodeCoverage)' == 'True' ">$(DefineConstants);ENABLE_CODECOVERAGE</DefineConstants>
<!-- Do not capture test output on CI to help community see errors -->
<TestCaptureOutput Condition=" '$(ContinuousIntegrationBuild)' == 'true' ">false</TestCaptureOutput>
</PropertyGroup>

<!-- Build & pack -->
Expand Down

0 comments on commit 55ced74

Please sign in to comment.