Skip to content

Commit

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

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

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

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

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

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

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

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

Expand Down

0 comments on commit 98187b3

Please sign in to comment.