Revision 4ba45724aa6a5aeb0924c85b0010596f8ce65a25 authored by bear (Mike Taylor) on 02 August 2016, 17:29:48 UTC, committed by bear (Mike Taylor) on 02 August 2016, 17:29:48 UTC
1 parent af290e2
Raw File
test.py
import unittest

if __name__ == '__main__':
    testsuite = unittest.TestLoader().discover('.')
    unittest.TextTestRunner(verbosity=1).run(testsuite)
back to top