js-beautify-profile 248 B

1234567891011121314151617
  1. #! /usr/bin/env python
  2. import sys
  3. import unittest
  4. #Speedup things...
  5. try:
  6. import cProfile as profile
  7. except ImportError:
  8. import profile
  9. def run():
  10. sys.argv.append('discover')
  11. unittest.main()
  12. profile.run('run()')