diff --git a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs index 3411d6b3d96..fe60dadda8a 100644 --- a/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs +++ b/src/Xamarin.Android.Build.Tasks/Tests/Xamarin.Android.Build.Tests/AndroidDependenciesTests.cs @@ -19,7 +19,6 @@ namespace Xamarin.Android.Build.Tests public class AndroidDependenciesTests : BaseTest { [Test] - [Ignore ("Flaky test that intermittently fails when downloading the Android SDK/JDK over the network in CI. See: https://github.com/dotnet/android/issues/11973")] [NonParallelizable] // Do not run environment modifying tests in parallel. public void InstallAndroidDependenciesTest ([Values ("GoogleV2", "Xamarin")] string manifestType, [Values (AndroidRuntime.CoreCLR, AndroidRuntime.NativeAOT)] AndroidRuntime runtime) { @@ -63,6 +62,7 @@ public void InstallAndroidDependenciesTest ([Values ("GoogleV2", "Xamarin")] str using (var b = CreateApkBuilder ()) { b.Verbosity = LoggerVerbosity.Detailed; b.CleanupAfterSuccessfulBuild = false; + b.ThrowOnBuildFailure = false; string defaultTarget = b.Target; b.Target = "InstallAndroidDependencies"; b.BuildLogFile = "install-deps.log";