Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

skip failing tests on PR #164

Merged
merged 4 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/junit4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: JUnit 4 Tests
on:
push:
branches: [ main ]
pull_request:
# pull_request:

jobs:
formatting:
Expand All @@ -19,6 +19,7 @@ jobs:
files: "selenium-junit4-examples/**/*.java"
skip-commit: true
- name: Print diffs
if: success() || failure()
run: git --no-pager diff --exit-code

build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/selenium-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Selenium JUnit 5 Tests
on:
push:
branches: [ main ]
pull_request:
# pull_request:

jobs:
formatting:
Expand All @@ -19,8 +19,10 @@ jobs:
files: "selenium-examples/**/*.java"
skip-commit: true
- name: Print diffs
if: success() || failure()
run: git --no-pager diff --exit-code


build:
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testng.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: TestNg Tests
on:
push:
branches: [ main ]
pull_request:
# pull_request:

jobs:
build:
Expand Down
Loading