Skip to content

Instantly share code, notes, and snippets.

@DavidPiper94
Last active September 24, 2019 14:23
Show Gist options
  • Save DavidPiper94/c9d4d37d50cabc6b388096e013973be6 to your computer and use it in GitHub Desktop.
Save DavidPiper94/c9d4d37d50cabc6b388096e013973be6 to your computer and use it in GitHub Desktop.
Example code for article about unit tests - Testrunner
import unittest
loader = unittest.TestLoader()
start_dir = '.'
suite = loader.discover(start_dir)
runner = unittest.TextTestRunner()
runner.run(suite)
@DavidPiper94
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment