Browse Source

Don't run interactivity tests in paralell.

pull/736/head
Steven Kirk 10 years ago
parent
commit
7eb939dbce
  1. 4
      tests/Avalonia.Interactivity.UnitTests/Properties/AssemblyInfo.cs

4
tests/Avalonia.Interactivity.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("Avalonia.Interactive.UnitTests")]
// Don't run tests in parallel.
[assembly: CollectionBehavior(DisableTestParallelization = true)]
Loading…
Cancel
Save