Skip to main content

Common functionality across different Django projects of the UofC UIS Automation team

Project description

Automation Common is a simple Django app that provides common functionality across different Django projects of the UofC UIS Automation team.

Quick start

testfixtures

  1. Add “automationcommon” to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = [
        ...
        'automationcommon',
    ]
  2. Include the automationcommon URLconf in your project urls.py like this:

    url(r'', include('automationcommon.urls')),
  3. Run python manage.py migrate to create the automationcommon models.

  4. All module logging writes to a logger named ‘automationcommon’

  5. The unittests can be run using the runtests.py script.

  6. This module has an audit trail feature that allows you to capture update to / deletes of selected models. To track changes to a model simple use the ModelChangeMixin (preceding models.Model). To capture the “editor” use automationcommon.models.set_local_user() to set the user to be used in the audit trail or configure your app like this:

    MIDDLEWARE_CLASSES = (
        ...
        'automationcommon.middleware.RequestUserMiddleware',
        ...
    )

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-automationcommon-1.12.tar.gz (32.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page