Skip to content

Commit

Permalink
Enable testing versioning by default
Browse files Browse the repository at this point in the history
If it is disabled by default you might miss any tests related
to this when you things locally. Which is frustrating and
confusing.
  • Loading branch information
jonathan-s committed Feb 12, 2020
1 parent 7dd7e5c commit f23ca47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
ENABLE_VERSIONING = bool(os.environ.get('ENABLE_VERSIONING', False))
ENABLE_VERSIONING = bool(os.environ.get('ENABLE_VERSIONING', True))
EXTRA_INSTALLED_APPS = []
if ENABLE_VERSIONING:
EXTRA_INSTALLED_APPS.append('djangocms_versioning')
Expand Down

0 comments on commit f23ca47

Please sign in to comment.