Skip to content

Commit 3785455

Browse files
author
John Luo
committed
Cleanup
1 parent e5a4470 commit 3785455

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

eng/helix/helix.proj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<WaitForWorkItemCompletion Condition=" '$(CI)' == 'true' ">false</WaitForWorkItemCompletion>
1717
<FailOnMissionControlTestFailure>false</FailOnMissionControlTestFailure>
1818
<EnableAzurePipelinesReporter>true</EnableAzurePipelinesReporter>
19-
<EnableXUnitReporter>true</EnableXUnitReporter>
2019
<IsExternal>true</IsExternal>
2120
<Creator>aspnetcore</Creator>
2221
<SkipInvalidConfigurations>true</SkipInvalidConfigurations>

eng/helix/vstest/runtests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ fi
7373
# Filter syntax: https://github.com/Microsoft/vstest-docs/blob/master/docs/filter.md
7474
NONFLAKY_FILTER="Flaky:All!=true&Flaky:Helix:All!=true&Flaky:Helix:Queue:All!=true&Flaky:Helix:Queue:$HELIX!=true"
7575
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"
7777
nonflaky_exitcode=$?
7878
if [ $nonflaky_exitcode != 0 ]; then
7979
echo "Non-flaky tests failed!" 1>&2
8080
# DO NOT EXIT
8181
fi
8282
FLAKY_FILTER="Flaky:All=true|Flaky:Helix:All=true|Flaky:Helix:Queue:All=true|Flaky:Helix:Queue:$HELIX=true"
8383
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"
8585
if [ $? != 0 ]; then
8686
echo "Flaky tests failed!" 1>&2
8787
# DO NOT EXIT

0 commit comments

Comments
 (0)