diff --git a/.gitea/workflows/chrome-tests.yml b/.gitea/workflows/chrome-tests.yml index 82ad91e..f3ac9f4 100644 --- a/.gitea/workflows/chrome-tests.yml +++ b/.gitea/workflows/chrome-tests.yml @@ -10,6 +10,7 @@ jobs: python-version: [ "3.12" ] env: CHROMEDRIVER_VERSION: 114.0.5735.90 + CHROME_VERSION: 113.0.5672.0 steps: - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} @@ -27,24 +28,23 @@ jobs: run: | apt update -y apt upgrade -y - apt install -y fonts-liberation libasound2 libatk-bridge2.0-0 libatk1.0-0 libu2f-udev libcups2 libdrm2 libgbm1 libgtk-3-0 libgtk-4-1 libnspr4 libnss3 libu2f-udev libvulkan1 libxcomposite1 libxdamage1 libxfixes3 libxkbcommon0 libxrandr2 xdg-utils - name: Install Chrome and Chromedriver for Linux if: runner.os == 'Linux' run: | - wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb - # dpkg -i google-chrome-stable_current_amd64.deb - dpkg -i --force-all google-chrome-stable_current_amd64.deb - + wget https://storage.googleapis.com/chrome-for-testing-public/${CHROME_VERSION}/linux64/chrome-linux64.zip wget https://chromedriver.storage.googleapis.com/${CHROMEDRIVER_VERSION}/chromedriver_linux64.zip + unzip chrome-linux64.zip unzip chromedriver_linux64.zip mv chromedriver drivers + export PATH=$PATH:./chrome-linux64 + export PATH=$PATH:./drivers - name: Verify Installation run: | - which google-chrome - google-chrome --version - drivers/chromedriver --version + which chrome + chrome --version + chromedriver --version - name: Run the pytests run: pytest -c pytest.ini -m chrome