update how python tests are run on ubuntu and mac

pull/2623/head
Davis King 2 years ago
parent 135e6ef06a
commit c458c4f202

@ -30,18 +30,23 @@ jobs:
Ubuntu:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v2
- name: Build
run: python setup.py build
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
run: |
python setup.py build
python setup.py install --user
- name: Test
run: python setup.py test
run: python -m pytest --ignore docs --ignore dlib
# we don't run python setup.py test on MacOS because there is some system
# issue that prevents it from running at all.
MacOS:
runs-on: 'macos-latest'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- name: Build
run: python setup.py build
run: |
python setup.py build
python setup.py install --user
- name: Test
run: python -m pytest --ignore docs --ignore dlib

Loading…
Cancel
Save