Browse Source

Don't run Controls unit tests in parallel.

pull/81/head
Steven Kirk 11 years ago
parent
commit
eaacfa5ac9
  1. 4
      Tests/Perspex.Controls.UnitTests/Properties/AssemblyInfo.cs

4
Tests/Perspex.Controls.UnitTests/Properties/AssemblyInfo.cs

@ -1,6 +1,7 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Xunit;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
@ -34,3 +35,6 @@ using System.Runtime.InteropServices;
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
// Don't run tests in parallel.
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Loading…
Cancel
Save