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
Is your feature request related to a problem? Please describe.
Currently, a lot of testing code from unittest is mixed with pytest eco-system. We should migrate to pytest recommendations and give up unittest style tests.
Describe the solution you'd like
This includes abstracting out various fixtures so that they can be easily re-used across tests
Currently there is a lot of redundancy in tests which can be addressed using pytest.parameterize
fixtures will allow new contributors to easily understand and write new tests, instead of mocking 6-layer deep.
Is your feature request related to a problem? Please describe.
Currently, a lot of testing code from
unittest
is mixed withpytest
eco-system. We should migrate topytest
recommendations and give upunittest
style tests.Describe the solution you'd like
fixtures
so that they can be easily re-used across testspytest.parameterize
fixtures
will allow new contributors to easily understand and write new tests, instead of mocking 6-layer deep.Ref discussions
get_events
,handle_event
,handle_readables
,handle_writables
#769 (comment)get_events
,handle_event
,handle_readables
,handle_writables
#769 (comment)The text was updated successfully, but these errors were encountered: