11 lines
139 B
Python
11 lines
139 B
Python
from __future__ import unicode_literals
|
|
|
|
import nose
|
|
import yappi
|
|
|
|
try:
|
|
yappi.start()
|
|
nose.main()
|
|
finally:
|
|
yappi.print_stats()
|