[Python] Fix tests when sending multiple messages.
The python tests utilize mock sockets (queues) to simulate network communication. Mock-methods send
, recv
and recv_multipart
in conftest
do not currently process handling of multipart messages correctly. Currently the queue is emptied after recv_multipart
is called which means only one multipart will be handled and the rest discarded. I've made a fix for this in the MR !154 (merged).
Edited by Joel Ekstroem