cv automation work.

Improve ferndale_ucentral.bash to at least mostly work.

Signed-off-by: Ben Greear <greearb@candelatech.com>
This commit is contained in:
Ben Greear
2021-05-09 21:01:20 -07:00
parent 49c1df2cb0
commit 627219a98d
2 changed files with 33 additions and 14 deletions

View File

@@ -158,9 +158,11 @@ class CreateChamberview(cv):
while (True):
self.get_popup_info_and_close()
if not self.get_cv_is_built():
print("Waiting %i/60 for Chamber-View to be built." % (tries))
# It can take a while to build a large scenario, so wait-time
# is currently max of 5 minutes.
print("Waiting %i/300 for Chamber-View to be built." % (tries))
tries += 1
if (tries > 60):
if (tries > 300):
break
time.sleep(1)
else: