9 lines
98 B
Python
9 lines
98 B
Python
import nose
|
|
import yappi
|
|
|
|
try:
|
|
yappi.start()
|
|
nose.main()
|
|
finally:
|
|
yappi.print_stats()
|