pytest_cases/case_funcs.py
1
E722:
do not use bare 'except'
366
except
:
1
B001:
Do not use bare `except:`, it also catches unexpected events like memory errors, interrupts, system exit, and so on. Prefer `except Exception:`. If you're sure what you're doing, be explicit and write `except BaseException:`.
366
except
: