Skip to content

Commit

Permalink
use pytest instead of tox
Browse files Browse the repository at this point in the history
  • Loading branch information
countvajhula committed Oct 2, 2024
1 parent ab116a3 commit 8b6ec57
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
strategy:
matrix:
py:
- "3.9"
- "3.12"
os:
- "macos-latest"
- "ubuntu-latest"
architecture:
- ARM64
- x64
name: "Python: ${{ matrix.py }}-${{ matrix.architecture }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
- name: Install dependencies
run: make build-for-test
- name: Run tests
run: make test-matrix
run: pytest
coverage:
runs-on: ubuntu-latest
name: Report coverage
Expand All @@ -41,7 +41,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.12
architecture: x64
- name: Install dependencies
run: make build-for-test
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: 3.9
python-version: 3.12
architecture: x64
- name: Install dependencies
run: make build
Expand Down

0 comments on commit 8b6ec57

Please sign in to comment.