Mercurial > lcfOS
annotate python/grind.py @ 271:cf7d5fb7d9c8
Reorganization
author | Windel Bouwman |
---|---|
date | Tue, 20 Aug 2013 18:56:02 +0200 |
parents | 444b9df2ed99 |
children |
rev | line source |
---|---|
245 | 1 |
2 import cProfile | |
3 import unittest | |
4 import pstats | |
5 | |
6 if __name__ == '__main__': | |
7 suite = unittest.TestLoader().discover('.') | |
8 def runtests(): | |
9 unittest.TextTestRunner().run(suite) | |
261 | 10 #s = cProfile.run('runtests()',sort='cumtime') |
11 s = cProfile.run('runtests()',sort='tottime') | |
245 | 12 |