Pytest with Background Thread Fixtures

1 ยท Haseeb Majid ยท Nov. 5, 2018, midnight
Summary
Recently I had to test some of my Python ๐Ÿ ๐Ÿ ๐Ÿ code which required an external dependency and communicating by using TCP sockets ๐Ÿ”Œ . You can think of this dependency as essentially a database because it stored information. However, when testing my Python code, I couldnโ€™t rely on there always being a TCP server to send messages to. So I ended up creating a simplified mocked version in Python....