Skip to content

Commit

Permalink
add wait for subrocess
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseSantosAMD committed Jul 10, 2023
1 parent 98187b3 commit 37ff2a2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions source/python/gui/source/tests/test_graphs.py
Original file line number Diff line number Diff line change
Expand Up @@ -1895,7 +1895,7 @@ def test_verbose_gui_flag_1():

finally:
t.terminate()
t.join()
t.wait()

assert captured_title_set == expected_title_set
assert captured_output
Expand All @@ -1922,7 +1922,7 @@ def test_verbose_gui_flag_2():
driver.quit()
finally:
t.terminate()
t.join()
t.wait()

assert captured_output
assert captured_title_set == expected_title_set
Expand Down Expand Up @@ -1960,7 +1960,7 @@ def test_verbose_gui_flag_3():
driver.quit()
finally:
t.terminate()
t.join()
t.wait()

captured_output = t.communicate(timeout=120)[0].decode("utf-8")

Expand Down Expand Up @@ -2000,7 +2000,7 @@ def test_ip_port_flag():

finally:
t.terminate()
t.join()
t.wait()

captured_output = t.communicate(timeout=120)[0].decode("utf-8")

Expand Down

0 comments on commit 37ff2a2

Please sign in to comment.