Disable mac os x python test config since something in the environment is not working properly.

This commit is contained in:
Davis King 2022-11-09 22:11:57 -05:00
parent e5b2cedff8
commit 05d3f6eb17
1 changed files with 14 additions and 13 deletions

View File

@ -41,17 +41,18 @@ jobs:
- name: Test - name: Test
run: python -m pytest --ignore docs --ignore dlib run: python -m pytest --ignore docs --ignore dlib
MacOS: # Disabled for now since something is going sideways with python packages on github actions
runs-on: 'macos-latest' # MacOS:
steps: # runs-on: 'macos-latest'
- uses: actions/checkout@v3 # steps:
- uses: actions/setup-python@v4 # - uses: actions/checkout@v3
- name: Install python deps # - uses: actions/setup-python@v4
run: pip3 install pytest numpy # - name: Install python deps
- name: Build # run: pip3 install pytest numpy
run: | # - name: Build
python3 setup.py build # run: |
python3 setup.py install --user # python3 setup.py build
- name: Test # python3 setup.py install --user
run: python3 -m pytest --ignore docs --ignore dlib # - name: Test
# run: python3 -m pytest --ignore docs --ignore dlib