Skip to content

Commit

Permalink
Update tests.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wimglenn committed Dec 2, 2023
1 parent 02e706b commit 64d216a
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 64d216a

Please sign in to comment.