Metadata-Version: 1.1
Name: gocept.pytestlayer
Version: 2.0
Summary: Integration of zope.testrunner-style test layers into the py.test framework
Home-page: https://bitbucket.org/gocept/gocept.pytestlayer/
Author: gocept <mail@gocept.com>
Author-email: mail@gocept.com
License: ZPL 2.1
Description: ===================================
        The gocept.pytestlayer distribution
        ===================================
        
        Integration of zope.testrunner-style test layers into the `py.test`_
        framework
        
        This package is compatible with Python version 2.7. (To run its tests
        successfully you sould use at lest Python 2.7.4 because of a bug in earlier
        Python 2.7 versions.)
        
        .. _`py.test` : http://pytest.org
        
        Quick start
        ===========
        
        * Make sure your test files follow the `conventions of py.test's test
          discovery`_
        
          .. _`conventions of py.test's test discovery`:
             http://pytest.org/latest/goodpractises.html#python-test-discovery
        
          In particular, a file named ``tests.py`` will not be recognised.
        
        * Add a buildout section to create the `py.test` runner::
        
            [buildout]
            parts += pytest
        
            [pytest]
            recipe = zc.recipe.egg
            eggs = gocept.pytestlayer
                   pytest
                   <YOUR PACKAGE HERE>
        
        `gocept.pytestlayer` registers itself as a `py.test` plugin. This way, nothing
        more is needed to run an existing Zope or Plone test suite.
        
        
        =============================
        Developing gocept.pytestlayer
        =============================
        
        :Author:
            `gocept <http://gocept.com/>`_ <mail@gocept.com>,
            Godefroid Chapelle <gotcha@bubblenet.be>
        
        :Online documentation:
            http://pythonhosted.org/gocept.pytestlayer/
        
        :PyPI page:
            http://pypi.python.org/pypi/gocept.pytestlayer/
        
        :Issues:
            `report by e-mail <mail@gocept.com>`_
        
        :Source code:
            https://bitbucket.org/gocept/gocept.pytestlayer/
        
        :Current change log:
            https://bitbucket.org/gocept/gocept.pytestlayer/raw-file/tip/CHANGES.txt
        
        
        =================================
        Change log for gocept.pytestlayer
        =================================
        
        2.0 (2013-09-19)
        ================
        
        - Remove need to explicitely create fixtures.
          [gotcha]
        
        - Add ``plone.testing.layered`` test suites support.
          [gotcha]
        
        - Made tests a bit more robust.
          [icemac]
        
        
        1.0 (2013-08-28)
        ================
        
        - Initial release.
          [tlotze, icemac, gotcha]
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Framework :: Plone
Classifier: Framework :: Zope2
Classifier: Framework :: Zope3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: License :: OSI Approved :: Zope Public License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
