awx/awx/settings/development_quiet.py
James Laska 7064c9bed4 Additional flake8 cleanup
The flake8 command was identifying several warnings and errors. This change
addresses the flake8 warnings and updates the setup.cfg with additional
exclusions. If accepted, jenkins will be updated to use the flake8 command,
rather than using the django_jenkins plugin. This will expedite jenkins
testing.
2015-05-20 20:33:22 -04:00

16 lines
335 B
Python

# Copyright (c) 2014 AnsibleWorks, Inc.
# All Rights Reserved.
# Development settings for AWX project, but with DEBUG disabled
# Load development settings.
from defaults import * # NOQA
# Load development settings.
from development import * # NOQA
# Disable capturing DEBUG
DEBUG = False
TEMPLATE_DEBUG = DEBUG
SQL_DEBUG = DEBUG