Skip to content

Commit

Permalink
Disable Edge tests in CI (due to MicrosoftEdge/EdgeWebDriver/issues/102)
Browse files Browse the repository at this point in the history
  • Loading branch information
bonigarcia committed Oct 31, 2023
1 parent 3d598e7 commit ecb2373
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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/[email protected]
with:
timeout_minutes: 30
max_attempts: 3
command: |
cd selenium-webdriver-${{ matrix.project }}
./gradlew test -PexcludeTests=**/*Edge*

0 comments on commit ecb2373

Please sign in to comment.