Browse Source

Don't run XAML tests in parallel.

pull/223/head
Steven Kirk 11 years ago
parent
commit
d3e7a1b730
  1. 6
      tests/Perspex.Markup.Xaml.UnitTests/Properties/AssemblyInfo.cs

6
tests/Perspex.Markup.Xaml.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.Markup.Xaml.UnitTests")]
[assembly: AssemblyTitle("Perspex.Markup.Xaml.UnitTests")]
// Don't run tests in parallel.
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Loading…
Cancel
Save