Whitelist pydevd debug threads

When debugging a test case with pydevd (e.g. used by PyCharm) it
injects additional threads. These also need to be
whitelisted. Otherwise wait_for_threads will block forever.

Change-Id: I491c2fd404bddfbe17cb912557ef56ff9134ac4b
This commit is contained in:
Tobias Henkel 2017-04-19 13:54:45 +02:00
parent bdaf1f4a1a
commit 9e09d7f776

View File

@ -216,6 +216,9 @@ class BaseTestCase(testtools.TestCase):
'fake-provider3',
'CleanupWorker',
'DeletedNodeWorker',
'pydevd.CommandThread',
'pydevd.Reader',
'pydevd.Writer',
]
while True: