Skip to content

fix: resolve Python 3.14 deprecation warnings for asyncio event loop policy #3293

fix: resolve Python 3.14 deprecation warnings for asyncio event loop policy

fix: resolve Python 3.14 deprecation warnings for asyncio event loop policy #3293

Workflow file for this run

name: Coverage check
on:
push:
branches:
- main
- current-release
- "*LTS"
tags:
- "!*" # Do not execute on tags
pull_request:
branches:
- main
- current-release
- "*LTS"
jobs:
coverage:
name: Check coverage
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Run coverage
uses: sanic-org/simple-tox-action@v1
with:
python-version: "3.11"
tox-env: coverage
ignore-errors: true
- name: Upload coverage artifact
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: ./coverage.xml
retention-days: 1
if-no-files-found: error