From 64d216acf655e354fab9e7e1abe4f98696cbcdda Mon Sep 17 00:00:00 2001 From: wim glenn Date: Fri, 1 Dec 2023 18:05:18 -0600 Subject: [PATCH] Update tests.yml --- .github/workflows/tests.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c29981a..7be1ea4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ on: jobs: tests: - name: "Python ${{ matrix.python-version }} on ${{ matrix.os }}" + name: Python ${{ matrix.python-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: @@ -22,21 +22,21 @@ jobs: - "3.9" - "3.12" include: - - python-version: "pypy-3.9" + - python-version: pypy-3.9 os: ubuntu-latest steps: - - uses: "actions/checkout@v3" + - uses: actions/checkout@v3 - - uses: "actions/setup-python@v4" + - uses: actions/setup-python@v4 with: - python-version: "${{ matrix.python-version }}" + python-version: ${{ matrix.python-version }} architecture: x64 - - name: "Install" + - name: Install run: pip install -q -r tests/requirements.txt && pip freeze --all - - name: "Run tests for ${{ matrix.python-version }} on ${{ matrix.os }}" + - name: Run tests for ${{ matrix.python-version }} on ${{ matrix.os }} run: python -m pytest --durations=10 - name: Upload coverage to Codecov