From c656610c932817639ad8098d887278ef6979e366 Mon Sep 17 00:00:00 2001 From: Florian Date: Thu, 17 Feb 2022 23:30:16 +0100 Subject: [PATCH] tests: fix management_consumer test (#66) this test failed due to a strict polling delay, which caused the test to be interrupted by an async call, which stated "Incomplete File READ FAILED" see also https://github.com/NixOS/nixpkgs/pull/158118 Signed-off-by: florian on nixos (Florian Brandes) --- src/documents/tests/test_management_consumer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documents/tests/test_management_consumer.py b/src/documents/tests/test_management_consumer.py index 377e8fc54..92a5070dc 100644 --- a/src/documents/tests/test_management_consumer.py +++ b/src/documents/tests/test_management_consumer.py @@ -239,7 +239,7 @@ class TestConsumer(DirectoriesMixin, ConsumerMixin, TransactionTestCase): f'_is_ignored("{file_path}") != {expected_ignored}') -@override_settings(CONSUMER_POLLING=1, CONSUMER_POLLING_DELAY=1, CONSUMER_POLLING_RETRY_COUNT=20) +@override_settings(CONSUMER_POLLING=1, CONSUMER_POLLING_DELAY=3, CONSUMER_POLLING_RETRY_COUNT=20) class TestConsumerPolling(TestConsumer): # just do all the tests with polling pass @@ -251,7 +251,7 @@ class TestConsumerRecursive(TestConsumer): pass -@override_settings(CONSUMER_RECURSIVE=True, CONSUMER_POLLING=1, CONSUMER_POLLING_DELAY=1, CONSUMER_POLLING_RETRY_COUNT=20) +@override_settings(CONSUMER_RECURSIVE=True, CONSUMER_POLLING=1, CONSUMER_POLLING_DELAY=3, CONSUMER_POLLING_RETRY_COUNT=20) class TestConsumerRecursivePolling(TestConsumer): # just do all the tests with polling and recursive pass