File tree Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Expand file tree Collapse file tree 2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 16
16
<WaitForWorkItemCompletion Condition =" '$(CI)' == 'true' " >false</WaitForWorkItemCompletion >
17
17
<FailOnMissionControlTestFailure >false</FailOnMissionControlTestFailure >
18
18
<EnableAzurePipelinesReporter >true</EnableAzurePipelinesReporter >
19
- <EnableXUnitReporter >true</EnableXUnitReporter >
20
19
<IsExternal >true</IsExternal >
21
20
<Creator >aspnetcore</Creator >
22
21
<SkipInvalidConfigurations >true</SkipInvalidConfigurations >
Original file line number Diff line number Diff line change 73
73
# Filter syntax: https://github.com/Microsoft/vstest-docs/blob/master/docs/filter.md
74
74
NONFLAKY_FILTER=" Flaky:All!=true&Flaky:Helix:All!=true&Flaky:Helix:Queue:All!=true&Flaky:Helix:Queue:$HELIX !=true"
75
75
echo " Running non-flaky tests."
76
- $DOTNET_ROOT /dotnet vstest $1 --logger:trx --TestCaseFilter:" $NONFLAKY_FILTER "
76
+ $DOTNET_ROOT /dotnet vstest $1 --logger:trx --TestCaseFilter:" $NONFLAKY_FILTER "
77
77
nonflaky_exitcode=$?
78
78
if [ $nonflaky_exitcode != 0 ]; then
79
79
echo " Non-flaky tests failed!" 1>&2
80
80
# DO NOT EXIT
81
81
fi
82
82
FLAKY_FILTER=" Flaky:All=true|Flaky:Helix:All=true|Flaky:Helix:Queue:All=true|Flaky:Helix:Queue:$HELIX =true"
83
83
echo " Running known-flaky tests."
84
- $DOTNET_ROOT /dotnet vstest $1 --logger:trx --TestCaseFilter:" $FLAKY_FILTER "
84
+ $DOTNET_ROOT /dotnet vstest $1 --logger:trx --TestCaseFilter:" $FLAKY_FILTER "
85
85
if [ $? != 0 ]; then
86
86
echo " Flaky tests failed!" 1>&2
87
87
# DO NOT EXIT
You can’t perform that action at this time.
0 commit comments