From 17ae8e085d5c3d81c7c4b958ab65a4dd9e7b49cd Mon Sep 17 00:00:00 2001 From: scito Date: Wed, 25 Dec 2024 11:50:59 +0100 Subject: [PATCH] reenable macos tests again --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6953604..cda12b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest' - name: Test with pytest run: pytest - if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest') && (matrix.python-version != '3.10' && matrix.platform != 'macos-latest') + if: matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest' - name: Test with pytest (with code coverage) run: pytest --cov=extract_otp_secrets_test --junitxml=pytest.xml --cov-report=term-missing | tee pytest-coverage.txt if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest'