Skip to content

chore(deps): bump jinja2 from 3.1.4 to 3.1.5 (#3055) #2204

chore(deps): bump jinja2 from 3.1.4 to 3.1.5 (#3055)

chore(deps): bump jinja2 from 3.1.4 to 3.1.5 (#3055) #2204

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