From c2543f8cacd4c986e68db010043c8f235d8a85d5 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Tue, 23 Jul 2024 20:37:33 +0100 Subject: [PATCH] find out where its installed --- .gitea/workflows/chrome-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/chrome-tests.yml b/.gitea/workflows/chrome-tests.yml index d9018a5..cbddf88 100644 --- a/.gitea/workflows/chrome-tests.yml +++ b/.gitea/workflows/chrome-tests.yml @@ -28,10 +28,12 @@ jobs: apt update -y apt upgrade -y - - name: Install Edge and EdgeDriver for Linux + - name: Install Chrome and Chromedriver for Linux if: runner.os == 'Linux' run: | apt install -y chromium-browser chromium-driver + which chromium-browser + which chromium-driver - name: Run the pytests run: pytest -c pytest.ini -m chrome