From 4a8980bb3cd5bdd9a801eec7214169e3e6cf5fd1 Mon Sep 17 00:00:00 2001 From: lukas leufen <l.leufen@fz-juelich.de> Date: Thu, 28 Nov 2019 15:39:45 +0100 Subject: [PATCH] more sleep --- test/test_modules/test_pre_processing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_modules/test_pre_processing.py b/test/test_modules/test_pre_processing.py index 8b79dc38..2004f85c 100644 --- a/test/test_modules/test_pre_processing.py +++ b/test/test_modules/test_pre_processing.py @@ -43,7 +43,7 @@ class TestPreProcessing: var_all_dict={'o3': 'dma8eu', 'temp': 'maximum'}) caplog.set_level(logging.INFO) PreProcessing() - time.sleep(0.001) # sometimes the destruction logging is delayed during CI testing, so wait a little + time.sleep(0.1) # sometimes the destruction logging is delayed during CI testing, so wait a little assert caplog.record_tuples[0] == ('root', 20, 'PreProcessing started') assert caplog.record_tuples[1] == ('root', 20, 'check valid stations started') assert caplog.record_tuples[-2] == ('root', 20, PyTestRegex(r'run for \d+\.\d+s to check 5 station\(s\). Found ' -- GitLab