Revision 98a943f991dc6beeb66ad6e87714fbfea8711aa3 authored by Jeremy Low on 16 September 2016, 10:40:50 UTC, committed by Jeremy Low on 16 September 2016, 10:40:50 UTC
1 parent c818d1f
Raw File
test.py
import unittest

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