Skip to content

Commit 3566a1a

Browse files
committed
Merge branch 'feature/test-launching' into develop
2 parents 75d2f6b + b05b055 commit 3566a1a

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

tagging/tests/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
from .tests import *
1+
"""
2+
Tests for tagging.
3+
"""

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)