fix bare "py.test" runs without a directory by not defaulting to --doctest-modules which will virtually import everything
This commit is contained in:
parent
0325441099
commit
5a2295ada5
|
@ -1,9 +1,10 @@
|
||||||
|
|
||||||
import cProfile
|
if __name__ == '__main__':
|
||||||
import py
|
import cProfile
|
||||||
import pstats
|
import py
|
||||||
stats = cProfile.run('py.test.cmdline.main(["empty.py", ])', 'prof')
|
import pstats
|
||||||
p = pstats.Stats("prof")
|
stats = cProfile.run('py.test.cmdline.main(["empty.py", ])', 'prof')
|
||||||
p.strip_dirs()
|
p = pstats.Stats("prof")
|
||||||
p.sort_stats('cumulative')
|
p.strip_dirs()
|
||||||
print p.print_stats(30)
|
p.sort_stats('cumulative')
|
||||||
|
print p.print_stats(30)
|
||||||
|
|
Loading…
Reference in New Issue