From d3e7a1b7309f0d5fd4e6b28629de107afd1c70cf Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Mon, 28 Sep 2015 22:44:21 +0200 Subject: [PATCH] Don't run XAML tests in parallel. --- .../Properties/AssemblyInfo.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/Perspex.Markup.Xaml.UnitTests/Properties/AssemblyInfo.cs b/tests/Perspex.Markup.Xaml.UnitTests/Properties/AssemblyInfo.cs index 575bdbad2f..de66909bab 100644 --- a/tests/Perspex.Markup.Xaml.UnitTests/Properties/AssemblyInfo.cs +++ b/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")] \ No newline at end of file +[assembly: AssemblyTitle("Perspex.Markup.Xaml.UnitTests")] + +// Don't run tests in parallel. +[assembly: CollectionBehavior(DisableTestParallelization = true)] \ No newline at end of file