Skip to content

Commit

Permalink
Remove pipefail
Browse files Browse the repository at this point in the history
  • Loading branch information
compulim committed Dec 6, 2023
1 parent 8af1f66 commit e8e12ea
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/pull-request-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,9 +196,10 @@ jobs:
- name: Run docker-compose up
run: docker-compose -f docker-compose-wsl2.yml up --detach --scale chrome=2

- name: Ping Web Driver hub
- name: Wait for Docker to be ready
run: |
set +eo pipefail
set +e # Disable per-command fail, we will handle cURL fail.
while true
do
curl http://localhost:4444/wd/hub/status > /tmp/wd-status.json
Expand Down

0 comments on commit e8e12ea

Please sign in to comment.