diff --git a/.github/workflows/functional-test.yml b/.github/workflows/functional-test.yml index 32f00588..f9772681 100644 --- a/.github/workflows/functional-test.yml +++ b/.github/workflows/functional-test.yml @@ -61,7 +61,7 @@ jobs: path: | ~/.android/avd/* ~/.android/adb* - key: avd-${{ matrix.api-level }} + key: avd-${{ matrix.api-level }}-${{ matrix.target }} - name: Create AVD and generate snapshot for caching if: steps.avd-cache.outputs.cache-hit != 'true' diff --git a/test/integration/Android/Device/BrowserTests.cs b/test/integration/Android/Device/BrowserTests.cs index 332505da..5901a643 100644 --- a/test/integration/Android/Device/BrowserTests.cs +++ b/test/integration/Android/Device/BrowserTests.cs @@ -1,4 +1,4 @@ -using Appium.Net.Integration.Tests.helpers; +using Appium.Net.Integration.Tests.helpers; using NUnit.Framework; using OpenQA.Selenium.Appium; using OpenQA.Selenium.Appium.Android; @@ -6,6 +6,7 @@ namespace Appium.Net.Integration.Tests.Android.Device { + [Ignore("Chrome is not pre-installed on the google_apis emulator image used in CI")] internal class BrowserTests { private AppiumDriver _driver;