Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8da37a2

Browse files
authored
[ci] playground tests - show live output from the tests (#6564)
* [ci] playground tests - show live output from the tests * Address review feedback from @ damianedwards Add `ShowLiveOutput=true` for playground, endtoend, and workload tests. * address review feedbacvk from @ bradwilson
1 parent 34d6aab commit 8da37a2

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

tests/Aspire.EndToEnd.Tests/.runsettings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<RunSettings>
3+
<xUnit>
4+
<ShowLiveOutput>true</ShowLiveOutput>
5+
</xUnit>
36
<RunConfiguration>
47
<!-- Timeout in ms, 15 minutes -->
58
<TestSessionTimeout>900000</TestSessionTimeout>

tests/Aspire.Playground.Tests/.runsettings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<RunSettings>
3+
<xUnit>
4+
<ShowLiveOutput>true</ShowLiveOutput>
5+
</xUnit>
36
<RunConfiguration>
47
<!-- Timeout in ms, 20 minutes -->
58
<TestSessionTimeout>1200000</TestSessionTimeout>

tests/Aspire.Workload.Tests/.runsettings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<RunSettings>
3+
<xUnit>
4+
<ShowLiveOutput>true</ShowLiveOutput>
5+
</xUnit>
36
<RunConfiguration>
47
<!-- Timeout in ms, 20 minutes -->
58
<TestSessionTimeout>1200000</TestSessionTimeout>

tests/helix/send-to-helix-buildonhelixtests.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<_TestBlameArguments Include="--blame-crash-dump-type full" />
3636

3737
<!-- Using `dotnet test` for the project directly here -->
38-
<_TestRunCommandArguments Include="dotnet test -s .runsettings --results-directory $(_HelixLogsPath)" />
38+
<_TestRunCommandArguments Include="dotnet test -s .runsettings --results-directory $(_HelixLogsPath) -v:n" />
3939
<_TestRunCommandArguments Include="@(_TestBlameArguments, ' ')" />
4040
</ItemGroup>
4141

0 commit comments

Comments
 (0)