Metadata-Version: 2.1
Name: pytest-tipsi-django
Version: 2.4.0
Summary: UNKNOWN
Home-page: https://github.com/tipsi/pytest-tipsi-django
Author: cybergrind
Author-email: cybergrind@gmail.com
Maintainer: cybergrind
Maintainer-email: cybergrind@gmail.com
License: MIT
Keywords: pytest,pytest-django,fixtures,transactions,scopes
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Dist: django
Requires-Dist: pytest (>=3.3.0)
Requires-Dist: pytest-django (>=3.6.*)
Requires-Dist: tipsi-tools (>=1.7.0)
Requires-Dist: pytest-tipsi-testing (>=1.3.0)

pytest-tipsi-django
===================

.. image:: https://travis-ci.org/tipsi/pytest-tipsi-django.svg?branch=master
   :target: https://travis-ci.org/tipsi/pytest-tipsi-django
.. image:: https://img.shields.io/pypi/v/pytest-tipsi-django.svg
   :target: https://pypi.python.org/pypi/pytest-tipsi-django


.. contents:: **Table of Contents**
    :backlinks: none


Installation
------------

.. code-block:: bash

    $ pip install pytest-tipsi-django

Features 
------------

* Default django test settings

  - if you run pytest after install pytest-tipsi-django, 
    Configuration already has django settings.CACHE['default']

  - of course if you has Custom django settings, this settings to below are ignored.

.. code-block:: python

    DEFAULT_FILE_STORAGE = 'django.core.files.storage.FileSystemStorage'
    BROKER_BACKEND = 'memory'
    CACHES = {
        'default': {
            'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
            'TIMEOUT': 60 * 15
        }
    }






License
-------

pytest-tipsi-django is distributed under the terms of the
`MIT License <https://choosealicense.com/licenses/mit>`_.


