Test that xfail actually runs.
(db)
| 40 | @pytest.mark.xfail(reason="Test is expected to fail - testing xfail behavior") |
| 41 | @pytest.mark.asyncio |
| 42 | async def test_actually_runs(db): |
| 43 | """Test that xfail actually runs.""" |
| 44 | assert False |
| 45 | |
| 46 | |
| 47 | @pytest.mark.asyncio |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…