From 445220015f72c1d5f8fe46e347dc0948404af23b Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 7 May 2020 17:43:56 -0400 Subject: [PATCH] Lets not throw the baby out iwth the bathwater --- tests/Tgstation.Server.Tests/Instance/InstanceTest.cs | 2 +- tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/Tgstation.Server.Tests/Instance/InstanceTest.cs b/tests/Tgstation.Server.Tests/Instance/InstanceTest.cs index b42a243faf..708fe88d64 100644 --- a/tests/Tgstation.Server.Tests/Instance/InstanceTest.cs +++ b/tests/Tgstation.Server.Tests/Instance/InstanceTest.cs @@ -32,7 +32,7 @@ namespace Tgstation.Server.Tests.Instance await chatTests.ConfigureAwait(false); await repoTests; - // await new WatchdogTest(instanceClient).Run(cancellationToken); + await new WatchdogTest(instanceClient).Run(cancellationToken); var chatShutdown = chatTest.RunPostWatchdog(cancellationToken); await repoTest.RunPostWatchdog(cancellationToken); diff --git a/tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs b/tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs index b58717148f..39c7937357 100644 --- a/tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs +++ b/tests/Tgstation.Server.Tests/Instance/WatchdogTest.cs @@ -31,8 +31,8 @@ namespace Tgstation.Server.Tests.Instance }, cancellationToken); await RunBasicTest(cancellationToken); - await RunLongRunningTestThenUpdate(cancellationToken); - await RunLongRunningTestThenUpdateWithByondVersionSwitch(cancellationToken); + // await RunLongRunningTestThenUpdate(cancellationToken); + // await RunLongRunningTestThenUpdateWithByondVersionSwitch(cancellationToken); await StartAndLeaveRunning(cancellationToken); }