Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Diable System.Net.Http.FunctionalTests parallel execution on UAP run (#…
Browse files Browse the repository at this point in the history
…35004)

* diable parallel execution

* fix format....

* address feedback
  • Loading branch information
Caesar1995 authored Jan 31, 2019
1 parent 154e8ea commit 5543097
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@
<Compile Include="MultiInterfaceReadOnlyStream.cs" />
<Compile Include="MultiInterfaceStreamContent.cs" />
<Compile Include="PostScenarioUWPTest.cs" />
<Compile Include="XUnitAssemblyAttributes.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="$(CommonTestPath)\System\Diagnostics\RemoteExecutorConsoleApp\RemoteExecutorConsoleApp.csproj">
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.

using Xunit;

// [ActiveIssue(35002)]: Disable parallel execution of System.Net.Http.FunctionalTests on UAP test runs
[assembly: CollectionBehavior(CollectionBehavior.CollectionPerAssembly, DisableTestParallelization = true)]

0 comments on commit 5543097

Please sign in to comment.