From 01429405fb7604a592d32a6852821b602e6c2926 Mon Sep 17 00:00:00 2001 From: Rolf Smit Date: Mon, 2 Sep 2024 14:45:11 +0200 Subject: [PATCH] Change: Enable Gradle Managed Device usage on CI --- .../org/neotech/plugin/rootcoverage/IntegrationTest.kt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/plugin/src/test/kotlin/org/neotech/plugin/rootcoverage/IntegrationTest.kt b/plugin/src/test/kotlin/org/neotech/plugin/rootcoverage/IntegrationTest.kt index 3b6e273..e92f4f3 100644 --- a/plugin/src/test/kotlin/org/neotech/plugin/rootcoverage/IntegrationTest.kt +++ b/plugin/src/test/kotlin/org/neotech/plugin/rootcoverage/IntegrationTest.kt @@ -34,9 +34,8 @@ class IntegrationTest( @Before fun before() { // Ignore tests that require Gradle Managed Devices on CI (because GitHub Actions does not seem to support these well). - val isGradleManagedDeviceTest = - configuration.pluginConfiguration.getPropertyValue("runOnGradleManagedDevices")?.toBoolean() ?: false - Assume.assumeFalse(System.getenv("GITHUB_ACTIONS") != null && isGradleManagedDeviceTest) + val isGradleManagedDeviceTest = configuration.pluginConfiguration.getPropertyValue("runOnGradleManagedDevices")?.toBoolean() ?: false + //Assume.assumeFalse(System.getenv("GITHUB_ACTIONS") != null && isGradleManagedDeviceTest) Assume.assumeFalse(configuration.ignore) }