Skip to content

Update test_asyncio_runner.py #1960

Update test_asyncio_runner.py

Update test_asyncio_runner.py #1960

Workflow file for this run

name: CI | Code Quality
on:
push:
branches-ignore:
- "main-ci"
- "release"
pull_request:
branches:
- main
workflow_dispatch:
jobs:
lint:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, 3.10.12, 3.11.0]
runs-on: ubuntu-latest
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 Dependencies
run: |
python -m pip install --upgrade pip
pip install .[test]
- name: Pylint Source
run: pylint --ignore-paths='build/*' --ignore='_version.py' $(find . -type f -name '*.py') \