Metadata-Version: 2.1
Name: pytest-pyramid
Version: 0.3.3
Summary: pytest pyramid providing basic fixtures for testing pyramid applications with pytest test suite
Home-page: https://github.com/fizyk/pytest_pyramid
Author: Grzegorz Sliwinski
Author-email: fizyk@fizyk.net.pl
License: MIT License
Description: pytest_pyramid
        ==============
        
        .. image:: https://img.shields.io/pypi/v/pytest_pyramid.svg
            :target: https://pypi.python.org/pypi/pytest_pyramid/
            :alt: Latest PyPI version
        
        .. image:: https://readthedocs.io/projects/pytest_pyramid/badge/?version=v0.3.3
            :target: http://pytest_pyramid.readthedocs.io/en/v0.3.3/
            :alt: Documentation Status
        
        .. image:: https://img.shields.io/pypi/wheel/pytest_pyramid.svg
            :target: https://pypi.python.org/pypi/pytest_pyramid/
            :alt: Wheel Status
        
        .. image:: https://img.shields.io/pypi/pyversions/pytest_pyramid.svg
            :target: https://pypi.python.org/pypi/pytest_pyramid/
            :alt: Supported Python Versions
        
        .. image:: https://img.shields.io/pypi/l/pytest_pyramid.svg
            :target: https://pypi.python.org/pypi/pytest_pyramid/
            :alt: License
        
        Package status
        --------------
        
        .. image:: https://travis-ci.org/fizyk/pytest_pyramid.svg?branch=v0.3.3
            :target: https://travis-ci.org/fizyk/pytest_pyramid
            :alt: Tests
        
        .. image:: https://coveralls.io/repos/fizyk/pytest_pyramid/badge.png?branch=v0.3.3
            :target: https://coveralls.io/r/fizyk/pytest_pyramid?branch=v0.3.3
            :alt: Coverage Status
        
        pytest_pyramid provides basic fixtures for testing pyramid applications with pytest test suite.
        
        By default, pytest_pyramid will create two fixtures: pyramid_config, which creates configurator based on config.ini file, and pyramid_app, which creates TestApp based on Configurator returned by pyramid_config.
        
        Command line options
        --------------------
        
        * **--pc** - pyramid configuration file based on which pytest_pyramid will create test app
        
        Documentation
        -------------
        
        http://pytest-pyramid.readthedocs.io/en/latest/
        
        TODO
        ----
        
        This goal should make it in to 1.0 major release.
        
        #. provide a pyramid_proc fixture that will start pyramid app process using summon_process
        
        
        Tests
        -----
        
        To run tests run this command:
        
        `py.test --pc tests/pyramid.test.ini`
        
        
        CHANGES
        =======
        
        0.3.3
        ----------
        
        - add additiona_fixtures to factories.pyramid_app
        
        0.3.2
        ----------
        
        - add pyramid_config ini option
        
        0.3.1
        ----------
        
        - fixed pytest deprecation warning
        
        0.3.0
        ----------
        
        - [feature] changed pyramid_config fixture scope to session.
        
        0.2.0
        ----------
        
        - [feature] support pyramid's config inheritance with use = config:other.file.ini - Thanks Eric Hulser
        - [feature] dropped support for python 3.2, added support for python 3.4 and 3.5
        
        0.1.1
        -----
        - make factories condition to check parameters against None
        
        0.1.0
        -----
        - initial release
        - pyramid_config fixture factory and default fixture
        - pyramid_app fixture factory and default fixture
        - documentation
        
Keywords: pyramid pytest testing
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Plugins
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Software Development :: Testing
Provides-Extra: docs
Provides-Extra: tests
