Browse Source

Don't run D2D unit tests in parallel.

Steven Kirk 10 years ago
parent
commit
34f17ed562
1 changed files with 4 additions and 0 deletions
  1. 4 0
      tests/Perspex.Direct2D1.UnitTests/Properties/AssemblyInfo.cs

+ 4 - 0
tests/Perspex.Direct2D1.UnitTests/Properties/AssemblyInfo.cs

@@ -2,5 +2,9 @@
 // Licensed under the MIT license. See licence.md file in the project root for full license information.
 
 using System.Reflection;
+using Xunit;
 
 [assembly: AssemblyTitle("Perspex.Direct2D1.UnitTests")]
+
+// Don't run tests in parallel.
+[assembly: CollectionBehavior(DisableTestParallelization = true)]