view test/grind.py @ 294:e89cca5779b0

Merge
author Windel Bouwman
date Thu, 28 Nov 2013 20:39:56 +0100
parents 1c7c1e619be8
children be7f60545368
line wrap: on
line source


import cProfile
import unittest
import pstats

if __name__ == '__main__':
    suite = unittest.TestLoader().discover('.')
    def runtests():
        unittest.TextTestRunner().run(suite)
    #s = cProfile.run('runtests()',sort='cumtime')
    s = cProfile.run('runtests()',sort='tottime')