Jaymon / testdata

Python module to make testing easier, it can generate random data like names and text, run commands, fetch urls, create files and directories, and more
MIT License
10 stars 0 forks source link

Thread didn't raise an exception #14

Closed Jaymon closed 7 years ago

Jaymon commented 7 years ago

the variable foo_bar didn't exist, but thread t2 didn't notify me of the error

def c2_send():
            c2.blah(foo_bar)

t2 = testdata.Thread(target=c2_send)
t2.start()
t2.join()