Skip to content

Instantly share code, notes, and snippets.

@Porter97
Created February 4, 2020 20:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Porter97/83dd532e6535ded80aeb310e711fc345 to your computer and use it in GitHub Desktop.
Save Porter97/83dd532e6535ded80aeb310e711fc345 to your computer and use it in GitHub Desktop.
#...
@app.cli.command()
def test():
"""Run the unit tests."""
import unittest
tests = unittest.TestLoader().discover('tests')
unittest.TextTestRunner(verbosity=2).run(tests)
#...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment