From 05d3f6eb179071321aee300a3f91593d285dea56 Mon Sep 17 00:00:00 2001 From: Davis King Date: Wed, 9 Nov 2022 22:11:57 -0500 Subject: [PATCH] Disable mac os x python test config since something in the environment is not working properly. --- .github/workflows/build_python.yml | 27 ++++++++++++++------------- 1 file changed, 14 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build_python.yml b/.github/workflows/build_python.yml index 43d81272e..ce25f5f2e 100644 --- a/.github/workflows/build_python.yml +++ b/.github/workflows/build_python.yml @@ -41,17 +41,18 @@ jobs: - name: Test run: python -m pytest --ignore docs --ignore dlib - MacOS: - runs-on: 'macos-latest' - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - - name: Install python deps - run: pip3 install pytest numpy - - name: Build - run: | - python3 setup.py build - python3 setup.py install --user - - name: Test - run: python3 -m pytest --ignore docs --ignore dlib +# Disabled for now since something is going sideways with python packages on github actions +# MacOS: +# runs-on: 'macos-latest' +# steps: +# - uses: actions/checkout@v3 +# - uses: actions/setup-python@v4 +# - name: Install python deps +# run: pip3 install pytest numpy +# - name: Build +# run: | +# python3 setup.py build +# python3 setup.py install --user +# - name: Test +# run: python3 -m pytest --ignore docs --ignore dlib