Metadata-Version: 1.0
Name: instrumental
Version: 0.4b4
Summary: A condition/decision coverage tool for Python
Home-page: UNKNOWN
Author: Matthew J Desmarais
Author-email: matthew.desmarais@gmail.com
License: GPL
Description: Instrumental automatically instruments your code to add function calls that
        reveal execution characteristics. Instrumental can then monitor
        execution of your code and report back to you on how your source was executed.
        
        When you run a script with Instrumental, it will tell you which decisions and
        conditions haven't been fully exercised. So for a decision in an if statement,
        it will tell you if the decision only ever evaluated True or False. Instrumental
        will also tell you if the conditions in boolean decisions (and, or) were ever
        executed both True and False.
        
        As an example: if you usually say
        
        python setup.py nosetests
        
        you can say
        
        instrumental -rS -t <packagename> setup.py nosetests
        
        where packagename is the name of your project's top-level package.
        
        For more information visit `the Instrumental documentation <http://instrumental.readthedocs.org//en/latest>`_.
        
        Announcements and discussion about instrumental can be found on the
        "python-instrumental-discuss" google group.
        
        Please file bug reports and enhancement requests `on bitbucket <http://bitbucket.org/desmaj/instrumental>`_.
        
        
Keywords: ast condition decision coverage
Platform: UNKNOWN
