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

[ci] Use local chromedriver #31

Merged
merged 3 commits into from
Oct 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@ jobs:
- name: Install test dependencies
run: |
python -m pip install -r test-requirements.txt
seleniumbase install chromedriver latest

- name: Find Chrome Location
if : ${{ matrix.os == 'windows-latest' }}
run: |
if not exist "C:\Program Files (x86)\Google" mkdir "C:\Program Files (x86)\Google"
if not exist "C:\Program Files (x86)\Google\Chrome" mkdir "C:\Program Files (x86)\Google\Chrome"
mklink /D "C:\Program Files (x86)\Google\Chrome\Application" "C:\Program Files\Google\Chrome\Application"
shell: cmd
- name: Run Tests
run: |
cd tests
Expand Down