Skip to content

Commit 1652fb1

Browse files
pakrymJohn Luo
authored andcommitted
Merge
1 parent 1ee9911 commit 1652fb1

File tree

2 files changed

+4
-26
lines changed

2 files changed

+4
-26
lines changed

build/repo.props

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -143,31 +143,9 @@
143143
the entire pattern will silently fail to evaluate correctly.
144144
-->
145145
<DotNetProjects Include="
146-
$(RepositoryRoot)src\Framework\ref\Microsoft.AspNetCore.App.Ref.csproj;
147-
$(RepositoryRoot)src\Framework\src\Microsoft.AspNetCore.App.Runtime.csproj;
148-
$(RepositoryRoot)src\Framework\test\Microsoft.AspNetCore.App.UnitTests.csproj;
149-
$(RepositoryRoot)src\DefaultBuilder\**\*.*proj;
150-
$(RepositoryRoot)src\Features\JsonPatch\**\*.*proj;
151-
$(RepositoryRoot)src\DataProtection\**\*.*proj;
152-
$(RepositoryRoot)src\Antiforgery\**\*.*proj;
153-
$(RepositoryRoot)src\Hosting\**\*.*proj;
146+
154147
$(RepositoryRoot)src\Http\**\*.*proj;
155-
$(RepositoryRoot)src\Html\**\*.*proj;
156-
$(RepositoryRoot)src\Identity\**\*.*proj;
157-
$(RepositoryRoot)src\Servers\**\*.csproj;
158-
$(RepositoryRoot)src\Security\**\*.*proj;
159-
$(RepositoryRoot)src\SiteExtensions\Microsoft.Web.Xdt.Extensions\**\*.csproj;
160-
$(RepositoryRoot)src\Shared\**\*.*proj;
161-
$(RepositoryRoot)src\Tools\**\*.*proj;
162-
$(RepositoryRoot)src\Middleware\**\*.csproj;
163-
$(RepositoryRoot)src\Razor\**\*.*proj;
164-
$(RepositoryRoot)src\Mvc\**\*.*proj;
165-
$(RepositoryRoot)src\Azure\**\*.*proj;
166-
$(RepositoryRoot)src\MusicStore\**\*.*proj;
167-
$(RepositoryRoot)src\SignalR\**\*.csproj;
168-
$(RepositoryRoot)src\Components\**\*.csproj;
169-
$(RepositoryRoot)src\ProjectTemplates\*\*.csproj;
170-
$(RepositoryRoot)src\ProjectTemplates\testassets\*\*.csproj;
148+
171149
"
172150
Exclude="
173151
@(ProjectToBuild);

eng/helix/vstest/runtests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ 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;LogFileName=test-results.xml --logger:console;verbosity=normal --TestCaseFilter:"$NONFLAKY_FILTER"
76+
$DOTNET_ROOT/dotnet vstest $1 '--logger:trx;LogFileName=test-results.xml' '--logger:console;verbosity=normal' --TestCaseFilter:"$NONFLAKY_FILTER"
7777
nonflaky_exitcode=$?
7878
if [ $nonflaky_exitcode != 0 ]; then
7979
echo "Non-flaky tests failed!" 1>&2
@@ -82,7 +82,7 @@ fi
8282

8383
FLAKY_FILTER="Flaky:All=true|Flaky:Helix:All=true|Flaky:Helix:Queue:All=true|Flaky:Helix:Queue:$HELIX=true"
8484
echo "Running known-flaky tests."
85-
$DOTNET_ROOT/dotnet vstest $1 --logger:trx;LogFileName=test-results.xml --logger:console;verbosity=normal --TestCaseFilter:"$FLAKY_FILTER"
85+
$DOTNET_ROOT/dotnet vstest $1 '--logger:trx;LogFileName=test-results.xml' '--logger:console;verbosity=normal' --TestCaseFilter:"$FLAKY_FILTER"
8686
if [ $? != 0 ]; then
8787
echo "Flaky tests failed!" 1>&2
8888
# DO NOT EXIT

0 commit comments

Comments
 (0)