Skip to content

chore(deps): bump aiohttp from 3.10.8 to 3.10.9 in the production-dependencies group #2096

chore(deps): bump aiohttp from 3.10.8 to 3.10.9 in the production-dependencies group

chore(deps): bump aiohttp from 3.10.8 to 3.10.9 in the production-dependencies group #2096

name: Check Tests for Unspecific XFails
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
Check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: check xfails
run: if grep -ro "@pytest.mark.xfail()" tests/; then echo "xfails must catch a specific error, e.g. '@pytest.mark.xfail(raises=NotImplementedError)'" && exit 1; else echo "success" && exit 0; fi