From 652ecf57f06ee165515801e7f3324eed3ceda437 Mon Sep 17 00:00:00 2001 From: scito Date: Fri, 30 Dec 2022 18:33:26 +0100 Subject: [PATCH] ci: workaround macOS pytest segfauls -> exclude macOS (2) --- .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 a9f2ced..8fc79e0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: if: matrix.python-version == '3.x' - name: Test with pytest run: pytest - if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest') && matrix.platform != 'macOS' + if: (matrix.python-version != '3.x' || matrix.platform != 'ubuntu-latest') && matrix.platform != 'macos-latest' - name: Test with pytest (with code coverage) run: pytest --cov=test_extract_otp_secret_keys_pytest --junitxml=pytest.xml --cov-report=term-missing | tee pytest-coverage.txt if: matrix.python-version == '3.x' && matrix.platform == 'ubuntu-latest'