Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/audience/playmode-linux-container.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
set -uo pipefail

LOG=/github/workspace/artifacts/unity.log
ACTIVATION_LOG=/github/workspace/artifacts/activation.log
ACTIVATION_LOG=/tmp/audience-unity-activation.log
RESULTS=/github/workspace/artifacts/test-results.xml
PROJECT=/github/workspace/examples/audience

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,13 @@ public void SetUp()
_root = null;
}

[TearDown]
public void TearDown()
{
LogAssert.ignoreFailingMessages = false;
System.Net.ServicePointManager.ServerCertificateValidationCallback = null;
}

// ---- Helpers shared by every test ----

// Loads the SampleApp scene, types the env-var key into publishable-key,
Expand Down Expand Up @@ -155,7 +162,7 @@ public IEnumerator AudienceCiTestMarker_EmitsRunMetadata()
["ciJobId"] = jobId ?? string.Empty,
});

yield return null;
yield return FlushAndAssertNoErrors("ci marker");
}

[UnityTest]
Expand Down
Loading