mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
tests: wait for the consumer to exit before removing directories.
This commit is contained in:
parent
35b2033949
commit
a4277706f2
@ -38,6 +38,7 @@ class TestConsumer(TestCase):
|
||||
sample_file = os.path.join(os.path.dirname(__file__), "samples", "simple.pdf")
|
||||
|
||||
def setUp(self) -> None:
|
||||
self.t = None
|
||||
patcher = mock.patch("documents.management.commands.document_consumer.async_task")
|
||||
self.task_mock = patcher.start()
|
||||
self.addCleanup(patcher.stop)
|
||||
@ -53,7 +54,12 @@ class TestConsumer(TestCase):
|
||||
|
||||
def tearDown(self) -> None:
|
||||
if self.t:
|
||||
# set the stop flag
|
||||
self.t.stop()
|
||||
# wait for the consumer to exit.
|
||||
self.t.join()
|
||||
|
||||
remove_dirs(self.dirs)
|
||||
|
||||
def wait_for_task_mock_call(self):
|
||||
n = 0
|
||||
|
Loading…
x
Reference in New Issue
Block a user