From 590faeee258de3d79d1fca4e4c4e1f236ed9eae3 Mon Sep 17 00:00:00 2001 From: Jordan Dominion Date: Mon, 10 Jul 2023 23:38:21 -0400 Subject: [PATCH] Do not cleanup temp dir at end of tests Still cleans at beginning --- tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs b/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs index 5f7e49f75b..56263c1717 100644 --- a/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs +++ b/tests/Tgstation.Server.Tests/Live/LiveTestingServer.cs @@ -161,7 +161,9 @@ namespace Tgstation.Server.Tests.Live UpdatePath = Path.Combine(Directory, Guid.NewGuid().ToString()); } - public void Dispose() => Cleanup(Directory).GetAwaiter().GetResult(); + public void Dispose() + { + } public void UpdateSwarmArguments(SwarmConfiguration swarmConfiguration) {