From d845199a24732cd8822b438d7b07ad48c61575d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Deuchnord?= Date: Fri, 18 Jun 2021 13:03:34 +0200 Subject: [PATCH] ci: fix doctests not running correctly on some OS and Python versions --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 112ddfc..89d11f3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -108,8 +108,8 @@ jobs: run: | make coverage-doctests - - name: Run doc tests - if: ${{ matrix.os != 'ubuntu-20.04' && matrix.python_version != '3.9' }} + - name: Run doc tests (without coverage) + if: ${{ matrix.os != 'ubuntu-20.04' || matrix.python_version != '3.9' }} run: | make doctests