-
Notifications
You must be signed in to change notification settings - Fork 99
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable Edge tests in CI (due to MicrosoftEdge/EdgeWebDriver/issues/102)
- Loading branch information
1 parent
3d598e7
commit ecb2373
Showing
1 changed file
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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* |