Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions build.proj
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@
PropertyName="SubTasks" />
</CreateProperty>
<CreateProperty
Value="@(TestCsprojList->Split(`;`)->Count())">
Value="$(TestCsprojList.Split(';').Length)">
<Output
TaskParameter="Value"
PropertyName="TestCsprojListCount" />
Expand Down Expand Up @@ -314,7 +314,6 @@
<Target Name="Test" DependsOnTargets="FilterBuild">
<Message Importance="high" Text="Running check in tests..." />
<MakeDir Directories="$(TestOutputDirectory)" ContinueOnError="false" />

<!-- https://github.com/Microsoft/msbuild/issues/3157#issuecomment-378002971 -->
<!-- https://github.com/xunit/xunit/issues/1154#issuecomment-405366373 -->
<Exec Command="dotnet test $(RepoArtifacts)Azure.PowerShell.sln --filter &quot;AcceptanceType=CheckIn%26RunType!=DesktopOnly&quot; --configuration $(Configuration) --framework $(TestFramework) --logger trx --results-directory &quot;$(TestOutputDirectory)&quot;" Condition="$(TestCsprojListCount) != 0" />
Expand Down
Loading