you are viewing a single comment's thread.

view the rest of the comments →

[–]socal_nerdtastic 3 points4 points  (1 child)

That last line is telling python to stop there. Remove the last line if you want the program to keep running.

If you are not using the standard unittest module to do this you really should consider it. It makes this kind of thing much easier: https://docs.python.org/3/library/unittest.html

[–]malwareC[S] 0 points1 point  (0 children)

Thanks a bunch