summaryrefslogtreecommitdiff
path: root/tests/django_test_app/__init__.py
blob: 45068109028220419d53ebf2344a1bf3d1be7429 (plain)
1
2
3
4
5
6
7
8
9
10
11
# -*- coding: utf-8 -*-
# Copyright (c) The python-semanticversion project
# This code is distributed under the two-clause BSD License.

try:  # pragma: no cover
    import django
    from django.conf import settings
    django_loaded = True
except ImportError:  # pragma: no cover
    django_loaded = False