From 75a7223aa16035a5054d544c2ef46afef54e28db Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 20 Aug 2020 19:23:16 +0200 Subject: [PATCH] Integration tests go brrrr --- Content.IntegrationTests/ContentIntegrationTest.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.IntegrationTests/ContentIntegrationTest.cs b/Content.IntegrationTests/ContentIntegrationTest.cs index 1970ba9ee7..023cf5fe0f 100644 --- a/Content.IntegrationTests/ContentIntegrationTest.cs +++ b/Content.IntegrationTests/ContentIntegrationTest.cs @@ -4,6 +4,7 @@ using Content.Client; using Content.Client.Interfaces.Parallax; using Content.Server; using Content.Server.Interfaces.GameTicking; +using NUnit.Framework; using Robust.Shared.ContentPack; using Robust.Shared.Interfaces.Network; using Robust.Shared.IoC; @@ -12,6 +13,7 @@ using EntryPoint = Content.Client.EntryPoint; namespace Content.IntegrationTests { + [Parallelizable(ParallelScope.All)] public abstract class ContentIntegrationTest : RobustIntegrationTest { protected sealed override ClientIntegrationInstance StartClient(ClientIntegrationOptions options = null)