You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Testing the ignition interface opens the simulator to interface with it. Currently, this is done via subprocess.Popen and without any checks that the simulator is ready. Instead, we just time.sleep(3) and hope it will have initialized after this time. This works most of the time, but might randomly break. It also wastes time as the test may wait much longer than it needs to.
What is needed is a mechanism to detect if ignition is running and has finished initializing.
The text was updated successfully, but these errors were encountered:
Testing the ignition interface opens the simulator to interface with it. Currently, this is done via
subprocess.Popen
and without any checks that the simulator is ready. Instead, we justtime.sleep(3)
and hope it will have initialized after this time. This works most of the time, but might randomly break. It also wastes time as the test may wait much longer than it needs to.What is needed is a mechanism to detect if ignition is running and has finished initializing.
The text was updated successfully, but these errors were encountered: