From 8b6ec570f0045640133debd1065022c713a2c741 Mon Sep 17 00:00:00 2001 From: Siddhartha Date: Tue, 1 Oct 2024 21:09:41 -0700 Subject: [PATCH] use `pytest` instead of `tox` --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0f4f9dc..de0cf56 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: @@ -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 @@ -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 @@ -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