Skip to content

Commit

Permalink
dont run int tests in parallel
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Gardham-Pallister committed May 29, 2018
1 parent f4de8f4 commit 28f234f
Showing 1 changed file with 24 additions and 23 deletions.
47 changes: 24 additions & 23 deletions test/Rafty.IntegrationTests/Tests.cs
Original file line number Diff line number Diff line change
@@ -1,27 +1,28 @@
namespace Rafty.IntegrationTests
{
using System.Diagnostics;
using System.Threading.Tasks;
using Microsoft.Data.Sqlite;
using Microsoft.Extensions.Logging;
using Rafty.Log;
using Xunit.Abstractions;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;
using Rafty.Concensus;
using Rafty.Infrastructure;
using Shouldly;
using Xunit;
using static Rafty.Infrastructure.Wait;
using Rafty.FiniteStateMachine;
using System.Diagnostics;
using System.Threading.Tasks;
using Microsoft.Data.Sqlite;
using Microsoft.Extensions.Logging;
using Rafty.Log;
using Xunit.Abstractions;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Newtonsoft.Json;
using Rafty.Concensus;
using Rafty.Infrastructure;
using Shouldly;
using Xunit;
using static Rafty.Infrastructure.Wait;
using Rafty.FiniteStateMachine;

[assembly: CollectionBehavior(DisableTestParallelization = true)]
namespace Rafty.IntegrationTests
{
public class Tests : IDisposable
{
private readonly List<IWebHost> _builders;
Expand Down

0 comments on commit 28f234f

Please sign in to comment.