Skip to content

Commit

Permalink
Fix driver url
Browse files Browse the repository at this point in the history
  • Loading branch information
justafish committed Dec 14, 2023
1 parent 9246b6c commit 4de6863
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ jobs:
- name: Run tests
run: |
if [ "${{ matrix.selenium }}" != "latest" ]; then
DRIVER_URL="http://localhost:4444/wd/hub" ./vendor/bin/phpunit -v --coverage-clover=coverage.xml
else
if [ "${{ matrix.selenium }}" == "latest" ] || [ "${{ matrix.selenium }}" == "4.1.2-20220227" ]; then
./vendor/bin/phpunit -v --coverage-clover=coverage.xml
else
DRIVER_URL="http://localhost:4444/wd/hub" ./vendor/bin/phpunit -v --coverage-clover=coverage.xml
fi
- name: Upload coverage
Expand Down

0 comments on commit 4de6863

Please sign in to comment.