BB: Reduce time to wait for agents to finish

Since the agents stop and start so much more quickly now, these delays
can be reduced.
This commit is contained in:
Mike Salvatore 2022-03-22 15:38:27 -04:00
parent ef9c3f4f32
commit 123606f23d
1 changed files with 2 additions and 2 deletions

View File

@ -6,8 +6,8 @@ from envs.monkey_zoo.blackbox.tests.basic_test import BasicTest
from envs.monkey_zoo.blackbox.utils.test_timer import TestTimer
MAX_TIME_FOR_MONKEYS_TO_DIE = 5 * 60
WAIT_TIME_BETWEEN_REQUESTS = 5
TIME_FOR_MONKEY_PROCESS_TO_FINISH = 10
WAIT_TIME_BETWEEN_REQUESTS = 1
TIME_FOR_MONKEY_PROCESS_TO_FINISH = 5
DELAY_BETWEEN_ANALYSIS = 3
LOGGER = logging.getLogger(__name__)