You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When writing unittest.py tests, often the test methods are camel-cased, e.g. def testThing(self): .... With pytest, the usual convention is snake_case (as per pep8), i.e. def test_thing():.
It'd be nice if unittest2pytest could rename the functions accordingly.
The text was updated successfully, but these errors were encountered:
When writing unittest.py tests, often the test methods are camel-cased, e.g.
def testThing(self): ...
. With pytest, the usual convention is snake_case (as per pep8), i.e.def test_thing():
.It'd be nice if unittest2pytest could rename the functions accordingly.
The text was updated successfully, but these errors were encountered: