Skip to content

Commit e6c42a4

Browse files
committed
Add settings for launching the tests
1 parent 75d2f6b commit e6c42a4

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

tagging/tests/settings.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
"""Tests settings"""
2+
3+
SECRET_KEY = 'secret-key'
4+
5+
DATABASES = {
6+
'default': {
7+
'NAME': 'tagging.db',
8+
'ENGINE': 'django.db.backends.sqlite3'
9+
}
10+
}
11+
12+
INSTALLED_APPS = [
13+
'django.contrib.auth',
14+
'django.contrib.sessions',
15+
'django.contrib.contenttypes',
16+
'tagging',
17+
'tagging.tests',
18+
]

0 commit comments

Comments
 (0)