mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-18 03:23:07 +01:00
Add a warning about the BYOND pager
This commit is contained in:
@@ -106,6 +106,14 @@ namespace Tgstation.Server.Tests
|
||||
[TestMethod]
|
||||
public async Task TestServer()
|
||||
{
|
||||
var procs = System.Diagnostics.Process.GetProcessesByName("byond");
|
||||
if(procs.Any())
|
||||
{
|
||||
foreach (var proc in procs)
|
||||
proc.Dispose();
|
||||
Assert.Inconclusive("Cannot run server test because DreamDaemon will not start headless while the BYOND pager is running!");
|
||||
}
|
||||
|
||||
using var server = new TestingServer();
|
||||
using var serverCts = new CancellationTokenSource();
|
||||
var cancellationToken = serverCts.Token;
|
||||
|
||||
Reference in New Issue
Block a user