From f6f7734246cc01a4094102572482aae66752bc5b Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 10 Dec 2022 01:11:59 +0100 Subject: [PATCH] Remove theoretically useless firefox setup in pipeline --- .github/workflows/test.yaml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e2516fa..2495cea 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -12,9 +12,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Install Firefox - run: sudo snap remove firefox && sudo add-apt-repository ppa:mozillateam/ppa && sudo apt install --target-release 'o=LP-PPA-mozillateam' firefox - - uses: browser-actions/setup-geckodriver@latest - name: Set up Python uses: actions/setup-python@v4 with: @@ -25,5 +22,5 @@ jobs: pip install pip-tools pip-sync requirements.txt requirements-dev.txt - name: Test - run: pytest --cov=. --cov-branch --cov-report term-missing:skip-covered + run: pytest --cov=. --cov-branch --cov-report term-missing:skip-covered --driver-path $GECKOWEBDRIVER working-directory: ./src/