From ce17fa3ccada036ae6dda4ab737267fc30239359 Mon Sep 17 00:00:00 2001 From: Zejun Lin <871886504@qq.com> Date: Thu, 18 Oct 2018 19:30:58 +0800 Subject: [PATCH] quick fix for ci (#248) --- test/naive/run.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/naive/run.py b/test/naive/run.py index d8add09e62..cbdf7e8b60 100644 --- a/test/naive/run.py +++ b/test/naive/run.py @@ -67,7 +67,7 @@ def run(self, installed = True): self.fetch_experiment_config() current_trial = 0 - for _ in range(60): + for _ in range(100): time.sleep(1) tuner_status = self.read_last_line('tuner_result.txt') @@ -89,7 +89,7 @@ def run(self, installed = True): current_trial = trial print('Trial #%d done' % trial) - assert experiment_status, 'Failed to finish in 1 min' + assert experiment_status, 'Failed to finish in 100 sec' ss1 = json.load(open('search_space.json')) ss2 = json.load(open('tuner_search_space.json'))