Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tests, bluetooth: use a process instead of a thread
...for our fake daemon. The in our fixture setup, the bluetooth daemon thread necessarily must start before the manager, because the widget wants to connect on startup. Of course, we fork() the manager (via multiprocessing), so spawning this Thread before then will cause a warning. Let's just use a process instead. This is in service of getting rid of all multithreading so that we can enable -W error. It seems to (?) eliminate all the warnings besides those in test_window_list.py, although 3.13 of course introduces more warnings inside dependencies :( Signed-off-by: Tycho Andersen <[email protected]>
- Loading branch information