Revision c94744bdd4d935da6abeb0257c60be8f8f4c9512 authored by Dan Pope on 24 November 2019, 16:32:12 UTC, committed by Dan Pope on 24 November 2019, 16:32:12 UTC
1 parent 4913e44
Raw File
test.py
import unittest

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