actually, do use them
Some checks failed
ChromeTests / build (3.12) (push) Failing after 27s
EdgeTests / build (3.12) (push) Successful in 1m4s
Pylint / build (3.12) (push) Successful in 13s

This commit is contained in:
Greg Gauthier 2024-07-23 21:08:35 +01:00
parent eb580220a1
commit ffd919d3c9

View File

@ -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