find out where its installed
Some checks failed
ChromeTests / build (3.12) (push) Failing after 29s
EdgeTests / build (3.12) (push) Successful in 1m12s
Pylint / build (3.12) (push) Successful in 13s

This commit is contained in:
Greg Gauthier 2024-07-23 20:37:33 +01:00
parent bd63e6464c
commit c2543f8cac

View File

@ -28,10 +28,12 @@ jobs:
apt update -y apt update -y
apt upgrade -y apt upgrade -y
- name: Install Edge and EdgeDriver for Linux - name: Install Chrome and Chromedriver for Linux
if: runner.os == 'Linux' if: runner.os == 'Linux'
run: | run: |
apt install -y chromium-browser chromium-driver apt install -y chromium-browser chromium-driver
which chromium-browser
which chromium-driver
- name: Run the pytests - name: Run the pytests
run: pytest -c pytest.ini -m chrome run: pytest -c pytest.ini -m chrome