From a76658e1e75547ccd8e385706c391a71d52b13dc Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Wed, 13 Sep 2023 00:07:00 +0200 Subject: [PATCH] fix(ci): reorder `sphinx` installation Test setup was overriden by wrong spinx version. --- .github/workflows/unit_tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 7a797984..e0f44093 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -48,6 +48,10 @@ jobs: with: python-version: ${{ matrix.python-version }} + - name: install dependencies + run: | + pip install -r requirements/development.txt + - name: install sphinx from PyPI or from git run: | if echo "${{ matrix.sphinx-version }}"|grep -q git; then @@ -56,9 +60,5 @@ jobs: pip install -Iv Sphinx==${{ matrix.sphinx-version }} fi - - name: install dependencies - run: | - pip install -r requirements/development.txt - - name: run the unit tests run: make dev-test