From e226b76b8b10eb79a06e69c65971de7aba55a901 Mon Sep 17 00:00:00 2001 From: Matthias Hagmann <16444067+MattHag@users.noreply.github.com> Date: Sun, 10 Mar 2024 13:19:48 +0100 Subject: [PATCH] Disable macOS tests until GitHub CI dependencies are fixed Related #1097 --- .github/workflows/tests.yml | 54 ++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 27 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 230881bccb..8f577c4b92 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,30 +31,30 @@ jobs: run: | make test - macos-tests: - runs-on: macos-latest - - strategy: - matrix: - python-version: [3.7, 3.12] - - steps: - - name: Checkout - uses: actions/checkout@v4 - - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - - - name: Set up macOS dependencies - run: | - make install_brew - - - name: Install Python dependencies - run: | - make install_pip PIP_ARGS='.["test"]' - - - name: Run tests on macOS - run: | - make test +# macos-tests: +# runs-on: macos-latest +# +# strategy: +# matrix: +# python-version: [3.7, 3.12] +# +# steps: +# - name: Checkout +# uses: actions/checkout@v4 +# +# - name: Set up Python ${{ matrix.python-version }} +# uses: actions/setup-python@v5 +# with: +# python-version: ${{ matrix.python-version }} +# +# - name: Set up macOS dependencies +# run: | +# make install_brew +# +# - name: Install Python dependencies +# run: | +# make install_pip PIP_ARGS='.["test"]' +# +# - name: Run tests on macOS +# run: | +# make test