Last active
June 16, 2020 08:37
-
-
Save sanjitk7/74467045b140d22aa9bdb90f64782364 to your computer and use it in GitHub Desktop.
creating a test suite
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
loader = unittest.TestLoader() | |
tests = loader.discover('.','test*') | |
testRunner = unittest.runner.TextTestRunner() | |
testRunner.run(tests) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment