I don't understand for which purposes the decorator @pytest.mark.asyncio can be used.
I've tried to run the following code snippet with pytest and pytest-asyncio plugin installed and it failed, so I concluded that pytest collects test coroutines without the decorator. Why it exists so?
async def test_div():
return 1 / 0