Skip to content

Instantly share code, notes, and snippets.

@mkroutikov
Created April 22, 2019 13:05
Show Gist options
  • Save mkroutikov/86aadc72753afe53346976fc0f20b447 to your computer and use it in GitHub Desktop.
Save mkroutikov/86aadc72753afe53346976fc0f20b447 to your computer and use it in GitHub Desktop.
profile snippet
if __name__ == '__main__':
import cProfile
cProfile.run('unittest.main()', 'b1')
import pstats
p = pstats.Stats('b1')
p.sort_stats('cumulative').print_stats(20)
print()
p.sort_stats('time').print_stats(20)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment