PyTest - Test Organization
You want pytest to discover tests in a file named
mytests.py containing functions def test_one(): and def test_two():. By default, pytest does not find this file. How can you rename the file to follow pytest discovery rules without changing function names?