Skip to content

Commit

Permalink
Change: Enable Gradle Managed Device usage on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Rolf-Smit committed Sep 2, 2024
1 parent 93e261a commit 0142940
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 0142940

Please sign in to comment.