js-beautify/python/js-beautify-profile
2011-10-12 15:56:10 +02:00

17 lines
232 B
Python
Executable File

#! /usr/bin/env python
import sys
import unittest
#Speedup things...
try:
import cProfile as profile
except ImportError:
import profile
def run():
sys.argv.append('discover')
unittest.main()
profile.run('run()')