diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 49753e8b..f01bc9f8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -82,6 +82,9 @@ jobs: # sudo apt-get update # sudo apt-get install libxml2-dev libxslt-dev + - name: Install dependencies + run: python -m pip install -e ".[dev]" + - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names @@ -89,9 +92,6 @@ jobs: # exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - - name: Install dependencies - run: python -m pip install -e ".[dev]" - # pycurl installation fix - name: Install packages required by pycurl if: ${{ matrix.env.MINIMAL == 'false' }}