From 99c93af745c40cdf33fcf0a1f415deba7c4a6f56 Mon Sep 17 00:00:00 2001 From: louis-richard Date: Sat, 9 Mar 2024 00:59:30 +0100 Subject: [PATCH] install keyrings.alt for tests --- .github/workflows/tests.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index db3e11f..bd13705 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,6 +22,7 @@ jobs: python -m pip install --upgrade pip python -m pip install flake8 pytest pip install -r requirements.txt + pip install keyrings.alt - name: Lint with flake8 run: | flake8 $(git ls-files '*.py') @@ -29,6 +30,7 @@ jobs: run: | pip install pytest ddt pytest-cov sphinx pandoc pip install -r docs/requirements.txt + pip install keyrings.alt pytest - name: Test with pytest (coverage + long tests) if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest' @@ -36,6 +38,7 @@ jobs: sudo apt update && sudo apt install -y texlive pandoc pip install pytest ddt pytest-cov sphinx pandoc pip install -r docs/requirements.txt + pip install keyrings.alt pytest --cov=./ --cov-report=xml - name: Check that release process is not broken if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest'