We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e79aae commit bf33c89Copy full SHA for bf33c89
com.unity.netcode.gameobjects/Tests/Runtime/StartStopTests.cs
@@ -1,4 +1,5 @@
1
using NUnit.Framework;
2
+using Unity.Netcode.TestHelpers.Runtime;
3
using UnityEngine;
4
5
namespace Unity.Netcode.RuntimeTests
@@ -7,6 +8,13 @@ internal class StartStopTests
7
8
{
9
private NetworkManager m_NetworkManager;
10
11
+ [OneTimeSetUp]
12
+ public void OneTimeSetup()
13
+ {
14
+ // This test does not need to run against the Rust server.
15
+ NetcodeIntegrationTestHelpers.IgnoreIfServiceEnviromentVariableSet();
16
+ }
17
+
18
[SetUp]
19
public void Setup()
20
0 commit comments