Metadata-Version: 1.0
Name: tranchitella.recipe.nose
Version: 0.1
Summary: Buildout recipe to create a nose test runner
Home-page: http://pypi.python.org/pypi/tranchitella.recipe.nose
Author: Tranchitella Kft.
Author-email: info@tranchitella.eu
License: GPL 2
Description: tranchitella.recipe.nose
        ========================
        
        This recipe creates a nose_ test runner script.
        
        Usage
        -----
        
        The recipe supports the following options:
        
        eggs
        
            The eggs option specified a list of eggs to test given as one ore more
            setuptools requirement strings.  Each string must be given on a separate
            line.
        
        script-name
        
            The script option gives the name of the script to generate, in the buildout
            bin directory.  Of the option isn't used, the part name will be used.
        
        defaults
        
            The defaults option lets you specify testrunner default options.
        
        extra-paths
        
            One or more extra paths to include in the generated test script.
        
        This is a minimal ''buildout.cfg'' file which creates a test runner::
        
            [test]
            recipe = tranchitella.recipe.nose
            eggs = myapplication
            defaults =
                --where src
                --with-coverage
                --cover-package myapplication
        
        .. _nose: http://somethingaboutorange.com/mrl/projects/nose/
        
        
        Changes
        =======
        
        0.1 (2010-04-21)
        ----------------
        
        - First public release.
        
Platform: UNKNOWN
Classifier: Framework :: Buildout
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Programming Language :: Python
