Skip to content

Commit f5d5b34

Browse files
committed
Update the GUI_test_runner
1 parent e3ba00b commit f5d5b34

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

examples/gui_test_runner.py

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,22 @@ def __init__(self, master):
4444
fg="blue").pack()
4545
self.run4 = Button(
4646
frame, command=self.run_4,
47-
text=("nosetests test_fail.py --browser=chrome"
48-
" --with-testing_base --demo_mode")).pack()
47+
text=("nosetests test_fail.py"
48+
" --browser=chrome --demo_mode")).pack()
4949
self.title5 = Label(
5050
frame,
5151
text="Basic Failing Test Suite Run with Test Report:",
5252
fg="blue").pack()
5353
self.run5 = Button(
5454
frame, command=self.run_5,
55-
text=("nosetests my_test_suite.py --with-testing_base"
56-
" --report --show_report")).pack()
55+
text=("nosetests my_test_suite.py --report --show_report")).pack()
5756
self.title6 = Label(
5857
frame,
5958
text="Basic Failing Test Run showing the Multiple-Checks feature:",
6059
fg="blue").pack()
6160
self.run6 = Button(
6261
frame, command=self.run_6,
63-
text=("nosetests non_terminating_checks_test.py"
64-
" --browser=chrome")).pack()
62+
text=("nosetests delayed_assert_test.py --browser=chrome")).pack()
6563
self.title7 = Label(
6664
frame,
6765
text="Use MySQL DB Reporting: (See ReadMe.md for Setup Steps!)",
@@ -88,18 +86,15 @@ def run_3(self):
8886

8987
def run_4(self):
9088
os.system(
91-
'nosetests test_fail.py'
92-
' --browser=chrome --with-testing_base --demo_mode')
89+
'nosetests test_fail.py --browser=chrome --demo_mode')
9390

9491
def run_5(self):
9592
os.system(
96-
'nosetests my_test_suite.py'
97-
' --with-testing_base --report --show_report')
93+
'nosetests my_test_suite.py --report --show_report')
9894

9995
def run_6(self):
10096
os.system(
101-
'nosetests non_terminating_checks_test.py'
102-
' --browser=chrome')
97+
'nosetests delayed_assert_test.py --browser=chrome')
10398

10499
def run_7(self):
105100
os.system(
@@ -109,6 +104,6 @@ def run_7(self):
109104

110105
if __name__ == "__main__":
111106
root = Tk()
112-
root.minsize(560, 444)
107+
root.minsize(532, 444)
113108
app = App(root)
114109
root.mainloop()

0 commit comments

Comments
 (0)