bumblebee-status/runtests.py

13 lines
288 B
Python
Raw Normal View History

2016-11-05 07:54:16 +01:00
#!/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