Run tests in the right directory and skip linux for now

pull/14/head
Andrew Cassidy 2 years ago
parent df6d5b1848
commit 77637f6abd

@ -49,7 +49,9 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-latest, windows-latest, ubuntu-latest ]
#os: [ macos-latest, windows-latest, ubuntu-latest ]
os: [ macos-latest, windows-latest ]
steps:
- uses: actions/checkout@v3
with:
@ -86,7 +88,7 @@ jobs:
publish:
name: Publish to PyPI and Github
needs: [build-wheels, build-sdist]
needs: [ build-wheels, build-sdist ]
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
runs-on: ubuntu-latest

@ -59,7 +59,7 @@ build = "cp{37,38,39,31*}-*"
skip = ["*cp37-musllinux*", "*musllinux_aarch64*", "cp{38,39,31*}-macosx_x86_64"]
build-frontend = "build"
dependency-versions = "latest"
test-command = 'python -m unittest discover "{project}/tests/" --verbose'
test-command = 'cd {project} && python -m unittest --verbose'
test-extras = ["tests"]
manylinux-x86_64-image = "manylinux2014"
manylinux-aarch64-image = "manylinux2014"

Loading…
Cancel
Save