Skip to content

Commit

Permalink
Github has won
Browse files Browse the repository at this point in the history
  • Loading branch information
patrick-dmxc committed May 10, 2024
1 parent 7bc6631 commit 010618a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ArtNetTests/LoopTests/ControllerToControllerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class ControllerToControllerTests
private ControllerInstanceMock instanceRX;
private InputPortConfig inputPort;

private Task initialTask;
private Task? initialTask;

private RemoteClient? rcRX = null;
private RemoteClient? rcTX = null;
Expand All @@ -27,6 +27,9 @@ public class ControllerToControllerTests
[OneTimeSetUp]
public void OneTimeSetUp()
{
if (ArtNetSharp.Tools.IsRunningOnGithubWorker())
Assert.Ignore("Not running on Github-Action");

Logger.LogDebug($"Test Setup: {nameof(ControllerToControllerTests)}");

artNet = new ArtNet();
Expand Down

0 comments on commit 010618a

Please sign in to comment.