-
Notifications
You must be signed in to change notification settings - Fork 774
Expand file tree
/
Copy pathprofile.py
More file actions
40 lines (27 loc) · 767 Bytes
/
profile.py
File metadata and controls
40 lines (27 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# FIXME: FAIL: testImplicitAssemblyLoad AssertionError: 0 != 1
"""Run all of the unit tests for this package over and over,
in order to provide for better profiling.
"""
from __future__ import print_function
import gc
import os
import sys
import time
import runtests
def main():
dirname = os.path.split(__file__)
sys.path.append(dirname)
gc.set_debug(gc.DEBUG_LEAK)
start = time.clock()
for i in range(50):
print('iteration: {0:d}'.format(i))
runtests.main()
stop = time.clock()
took = str(stop - start)
print('Total Time: {0}'.format(took))
for item in gc.get_objects():
print(item, sys.getrefcount(item))
if __name__ == '__main__':
main()