Disable macOS tests until GitHub CI dependencies are fixed
Related #1097
This commit is contained in:
parent
cc7194fe3d
commit
e226b76b8b
|
@ -31,30 +31,30 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
make test
|
make test
|
||||||
|
|
||||||
macos-tests:
|
# macos-tests:
|
||||||
runs-on: macos-latest
|
# runs-on: macos-latest
|
||||||
|
#
|
||||||
strategy:
|
# strategy:
|
||||||
matrix:
|
# matrix:
|
||||||
python-version: [3.7, 3.12]
|
# python-version: [3.7, 3.12]
|
||||||
|
#
|
||||||
steps:
|
# steps:
|
||||||
- name: Checkout
|
# - name: Checkout
|
||||||
uses: actions/checkout@v4
|
# uses: actions/checkout@v4
|
||||||
|
#
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
# - name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v5
|
# uses: actions/setup-python@v5
|
||||||
with:
|
# with:
|
||||||
python-version: ${{ matrix.python-version }}
|
# python-version: ${{ matrix.python-version }}
|
||||||
|
#
|
||||||
- name: Set up macOS dependencies
|
# - name: Set up macOS dependencies
|
||||||
run: |
|
# run: |
|
||||||
make install_brew
|
# make install_brew
|
||||||
|
#
|
||||||
- name: Install Python dependencies
|
# - name: Install Python dependencies
|
||||||
run: |
|
# run: |
|
||||||
make install_pip PIP_ARGS='.["test"]'
|
# make install_pip PIP_ARGS='.["test"]'
|
||||||
|
#
|
||||||
- name: Run tests on macOS
|
# - name: Run tests on macOS
|
||||||
run: |
|
# run: |
|
||||||
make test
|
# make test
|
||||||
|
|
Loading…
Reference in New Issue