Metadata-Version: 1.1
Name: pytest-docker-fixtures
Version: 1.1.0
Summary: pytest docker fixtures
Home-page: https://github.com/guillotinaweb/guillotina_rediscache
Author: Nathan Van Gheem
Author-email: vangheem@gmail.com
License: BSD
Description: Introduction
        ============
        
        Provide various service pytest fixtures.
        
        
        Install
        -------
        
        `pip install pytest-docker-fixtures`
        
        Usages
        ------
        
        In your conftest.py, add the following:
        
            pytest_plugins = ['pytest_docker_fixtures']
        
        
        And to use the fixtures:
        
            def test_foobar(redis):
                pass
        
        
        Available fixtures
        ------------------
        
        PRs welcome!
        
        - redis
        - etcd
        - pg(require to be installed with `pip install pytest-docker-fixtures[pg]`)
        - cockroach(require to be installed with `pip install pytest-docker-fixtures[pg]`)
        - es
        
        1.1.0 (2018-04-03)
        ------------------
        
        - Add Elasticsearch fixture
          [vangheem]
        
        
        1.0.1 (2018-03-12)
        ------------------
        
        - release
        
        
        1.0.0 (2018-03-12)
        ------------------
        
        - initial release
        
Keywords: pytest,fixtures,docker
Platform: UNKNOWN
Classifier: License :: OSI Approved :: BSD License
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Python Modules
