bumblebee-status/runtests.py
2016-11-05 07:54:16 +01:00

12 lines
288 B
Python
Executable file

#!/usr/bin/env python
import unittest
if __name__ == "__main__":
suite = unittest.TestSuite()
loader = unittest.TestLoader()
suite.addTest(loader.discover("tests/"))
unittest.TextTestRunner(verbosity=2).run(suite)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4