actually, do use them
This commit is contained in:
parent
eb580220a1
commit
ffd919d3c9
@ -23,16 +23,21 @@ jobs:
|
|||||||
python -m pip install -r requirements.txt
|
python -m pip install -r requirements.txt
|
||||||
mkdir drivers
|
mkdir drivers
|
||||||
|
|
||||||
|
- name: Prep the Debian repositories
|
||||||
|
run: |
|
||||||
|
apt update -y
|
||||||
|
apt upgrade -y
|
||||||
|
|
||||||
- name: Install Chrome and Chromedriver for Linux
|
- name: Install Chrome and Chromedriver for Linux
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
run: |
|
run: |
|
||||||
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
||||||
dpkg -i google-chrome-stable_current_amd64.deb
|
# dpkg -i google-chrome-stable_current_amd64.deb
|
||||||
apt install -f
|
apt install -f -y google-chrome-stable_current_amd64.deb
|
||||||
google-chrome --version
|
google-chrome --version
|
||||||
|
|
||||||
wget https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip
|
wget https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip
|
||||||
unzip
|
unzip chromedriver_linux64.zip
|
||||||
mv chromedriver drivers
|
mv chromedriver drivers
|
||||||
|
|
||||||
- name: Run the pytests
|
- name: Run the pytests
|
||||||
|
Loading…
Reference in New Issue
Block a user