From adede3c171b7204214a2f9fe7747c3e79c053c23 Mon Sep 17 00:00:00 2001 From: Steven Kirk Date: Wed, 7 Oct 2015 13:31:25 +0200 Subject: [PATCH] Don't run input tests in parallel. --- tests/Perspex.Input.UnitTests/Properties/AssemblyInfo.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Perspex.Input.UnitTests/Properties/AssemblyInfo.cs b/tests/Perspex.Input.UnitTests/Properties/AssemblyInfo.cs index d9d846e53b..2e99d7b15f 100644 --- a/tests/Perspex.Input.UnitTests/Properties/AssemblyInfo.cs +++ b/tests/Perspex.Input.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.Input.UnitTests")] + +// Don't run tests in parallel. +[assembly: CollectionBehavior(DisableTestParallelization = true)] \ No newline at end of file