Skip to content

Commit 54d7a99

Browse files
committed
Removed unused code and corrected command
1 parent cbbe083 commit 54d7a99

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

.yamato/desktop-standalone-tests.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,7 @@ desktop_standalone_build_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{
1919
type: {% if platform.name == "mac" %} {{ platform.type }} {% else %} {{ platform.type }}::GPU {% endif %}
2020
image: {{ platform.image }}
2121
flavor: {{ platform.flavor }}
22-
commands:
23-
# Installing tools
24-
{% if platform.name == "ubuntu" %}
25-
- sudo apt-get update -q
26-
- sudo apt install -qy imagemagick
27-
{% endif %}
28-
22+
commands:
2923
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple
3024

3125
# Installing editor
@@ -64,7 +58,7 @@ desktop_standalone_test_{{ project.name }}_{{ platform.name }}_{{ backend }}_{{
6458
image: {{ platform.image }}
6559
flavor: {{ platform.flavor }}
6660
commands:
67-
{% if editor == "2021.3" or platform.name == "ubuntu" %}
61+
{% if editor == "2021.3" && platform.name == "ubuntu" %}
6862
- sudo apt-get install -y libssl1.1 # For this specific configuration there is a difference in what libssl version is installed on the image and what editor uses. This should be removed when 2021 editor is out of support
6963
{% endif %}
7064
- pip install unity-downloader-cli --index-url https://artifactory.prd.it.unity3d.com/artifactory/api/pypi/pypi/simple # Installing unity downloader

com.unity.netcode.gameobjects/Tests/Runtime/NetworkObject/NetworkObjectSpawnManyObjectsTests.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System.Collections;
2-
using NUnit.Framework;
32
using Unity.Netcode.TestHelpers.Runtime;
43
using UnityEngine;
54
using UnityEngine.TestTools;
@@ -47,8 +46,6 @@ protected override void OnServerAndClientsCreated()
4746
}
4847

4948
[UnityTest]
50-
// When this test fails it does so without an exception and will wait the default ~6 minutes
51-
// [Timeout(360000)] // Tracked in MTT-11360
5249
public IEnumerator WhenManyObjectsAreSpawnedAtOnce_AllAreReceived()
5350
{
5451
for (int x = 0; x < k_SpawnedObjects; x++)

0 commit comments

Comments
 (0)