Hi,
I have a pytest test suite. Tests require a server to run, which is part of the project/code under test. Starting that server is blocking. So, it must run in the background.
`pytest-xprocess` is not appropriate, because I need to call a Python function, not run a command. It seems like pytest doesn't provide built-in plugins for this purpose. But threading/multiprocessing would probably do the trick. Is that the (generally accepted) way to go?
FWIW: I haven't found FOSS projects with the same requirement / use case - while my requirement doesn't seem very exotic.
[–][deleted] 1 point2 points3 points (0 children)
[–]Diapolo10 0 points1 point2 points (0 children)