Skip to content

Bump pytest-asyncio from 0.23.2 to 0.23.7 #2810

Bump pytest-asyncio from 0.23.2 to 0.23.7

Bump pytest-asyncio from 0.23.2 to 0.23.7 #2810

Workflow file for this run

name: tests
on:
push:
branches:
- main
- develop
pull_request:
branches:
- develop
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install system deps
shell: bash
run: |
pip install poetry
poetry config virtualenvs.in-project true
poetry install --no-root --only dev --only linters --sync
- name: Linting
shell: bash
run: poetry run inv hooks
tests:
needs: linting
name: ${{ matrix.os }} / ${{ matrix.python-version }}
runs-on: ${{ matrix.os }}-latest
strategy:
matrix:
os: [Ubuntu, MacOS]
python-version: ['3.8', '3.9', '3.10', '3.11']
fail-fast: true
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install system deps
shell: bash
run: |
pip install nox-poetry
pip install poetry
poetry config virtualenvs.in-project true
- name: Run mypy with nox
shell: bash
run: nox --force-color -s mypy-${{ matrix.python-version }}
- name: Run tests with nox
shell: bash
run: nox --force-color -s tests-${{ matrix.python-version }}
- name: Run safety check
if: matrix.python-version == '3.11' && matrix.os == 'Ubuntu'
shell: bash
run: nox --force-color -s safety
- name: Upload coverage data
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.os }}-${{ matrix.python-version }}.coverage-data
path: ".coverage.*"
retention-days: 2
coverage:
needs: tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.8
uses: actions/setup-python@v5
with:
python-version: 3.8
- name: Install system deps
shell: bash
run: |
pip install nox-poetry
pip install poetry
poetry config virtualenvs.in-project true
- name: Download coverage data
uses: actions/download-artifact@v4
with:
pattern: "*.coverage-data"
merge-multiple: true
- name: Create coverage report
shell: bash
run: |
nox --force-color -s coverage-3.8 -- --fmt xml
- name: Upload coverage report
uses: codecov/codecov-action@v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}