From ecb2373bf922668c3e384a7d41ac959efe492ca7 Mon Sep 17 00:00:00 2001 From: Boni Garcia Date: Tue, 31 Oct 2023 17:24:37 +0100 Subject: [PATCH] Disable Edge tests in CI (due to MicrosoftEdge/EdgeWebDriver/issues/102) --- .github/workflows/build.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 58623aae2..cc15ec4a2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -30,11 +30,21 @@ jobs: - name: Start Xvfb on Linux if: matrix.os == 'ubuntu-latest' run: Xvfb $DISPLAY & - - name: Run ${{ matrix.project }} tests with ${{ matrix.build-tool }} + - name: Run ${{ matrix.project }} tests with Maven + if: matrix.os == 'mvn' uses: nick-invision/retry@v2.9.0 with: timeout_minutes: 30 max_attempts: 3 command: | cd selenium-webdriver-${{ matrix.project }} - ${{ matrix.build-tool }} test + mvn test -Dtest=!*Edge* + - name: Run ${{ matrix.project }} tests with Gradle + if: matrix.os == 'gradle' + uses: nick-invision/retry@v2.9.0 + with: + timeout_minutes: 30 + max_attempts: 3 + command: | + cd selenium-webdriver-${{ matrix.project }} + ./gradlew test -PexcludeTests=**/*Edge*