How to run all tests in a python file from a python script?

Viewed 1835

How do I run all tests (unittest.TestCase) from a python file in a script?

I've tried using nose but it always seems to run the test discovery. All I want is to import a module, give some function a path and get the test results back, any suggestions?

1 Answers
Related