Ashley C Straw
Ashley C Straw
Not sure how doable this is, but it'd be incredibly convenient. https://emptysqua.re/blog/code-coverage-python-c-extensions/ is something else I'm looking into.
Simple example: ``` py @pytest.mark.xfail(run=True, reason="Should fail w/ XFAIL") def test_xfail(): pytest.assume(False) ``` Will always comeback XPASS instead of XFAIL. This is because the xfail marker makes `report.failed` == XPASS,...
It'd be very helpful to have one canonical way to re-use fixture code between test modules. Right now, I know of 3 ways to do this, each with their own...