Revision addb32e7e14bddf319a33aa4c26687360c1e5cd5 authored by Amnisia on 10 October 2017, 09:07:36 UTC, committed by Amnisia on 10 October 2017, 09:07:36 UTC
1 parent 1c480df
Raw File
test.py
import unittest

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