Skip to content

Bump pytest-asyncio from 0.24.0 to 0.25.0 (#406) #885

Bump pytest-asyncio from 0.24.0 to 0.25.0 (#406)

Bump pytest-asyncio from 0.24.0 to 0.25.0 (#406) #885

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Check out code from GitHub
uses: actions/[email protected]
- name: Set up Python
uses: actions/[email protected]
with:
python-version: "3.12"
- name: Install dependencies
run: |
python -m pip install --upgrade pip build setuptools
pip install . .[test]
- name: Lint/test with pre-commit
run: SKIP=no-commit-to-branch pre-commit run --all-files
# test:
# runs-on: ubuntu-latest
# continue-on-error: true
# strategy:
# fail-fast: false
# matrix:
# python-version:
# - "3.11"
# steps:
# - name: Check out code from GitHub
# uses: actions/[email protected]
# - name: Set up Python ${{ matrix.python-version }}
# uses: actions/[email protected]
# with:
# python-version: ${{ matrix.python-version }}
# - name: Install dependencies
# run: |
# python -m pip install --upgrade pip build setuptools
# pip install .[test]
# - name: Pytest
# run: pytest --durations 10 --cov-report term-missing --cov=aioslimproto --cov-report=xml tests/