The only remaining 'py.test' references are: * those referring to the 'py.test' executable * those in code explicitly testing py.test/pytest module compatibility * those in old CHANGES documentation * those in documentation generated based on external data * those in seemingly unfinished & unmaintained Japanese documentation Minor stylistic changes and typo corrections made to documentation next to several applied py.test --> pytest content changes.
13 lines
337 B
Python
13 lines
337 B
Python
import sys
|
|
|
|
if __name__ == '__main__':
|
|
import cProfile
|
|
import pytest
|
|
import pstats
|
|
script = sys.argv[1] if len(sys.argv) > 1 else "empty.py"
|
|
stats = cProfile.run('pytest.cmdline.main([%r])' % script, 'prof')
|
|
p = pstats.Stats("prof")
|
|
p.strip_dirs()
|
|
p.sort_stats('cumulative')
|
|
print(p.print_stats(250))
|