You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have included the __main__ check in your test case, then you can just run the script like you would with unittest
Use the testify test runner
If you're working on a larger projects with lots of test cases, you'll likely want to use the test runner.
Assuming your file layout is something like:
myapp/
README
lib/
tests/
mytest.py
Then just run:
testify tests
Run testify --help for all the options, or see RunningTests for more info.