Metadata-Version: 1.1
Name: nose-timer
Version: 0.1
Summary: A timer plugin for nosetests
Home-page: https://github.com/fisadev/nose-timer
Author: Juan Pedro Fisanotti
Author-email: fisadev@gmail.com
License: LICENSE.txt
Description: nose-timer
        ==========
        
        A timer plugin for nosetests (how much time does every test takes?)
        
        (based on `this gist <https://gist.github.com/848183>`_ from @mahmoudimus)
        
        Install
        -------
        
            pip install nose-timer
        
        Usage
        -----
        
        Run nosetests with the ``--with-timer`` flag, and you will see a list of the tests and the time spent by each one (in seconds):
        
            myapp.tests.ABigTestCase.test_the_world_is_running: 56.0010
            myapp.tests.ABigTestCase.test_the_rest_of_the_galaxy_is_running: 2356.0010
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Testing
Classifier: Environment :: Console
