Disable macOS tests until GitHub CI dependencies are fixed

Related #1097
This commit is contained in:
Matthias Hagmann 2024-03-10 13:19:48 +01:00 committed by Peter F. Patel-Schneider
parent cc7194fe3d
commit e226b76b8b
1 changed files with 27 additions and 27 deletions

View File

@ -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