Skip to content

Commit c80bfa3

Browse files
committed
Different test and demo settings files
settings.py is for running a demo, test_sqlite.py is for running the tests.
1 parent e9505ca commit c80bfa3

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
htmlcov
44
dist/
55
*.egg-info/
6+
sqlite_database

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
TESTS=tests
22

33
test:
4-
cd tests && $(COVERAGE_COMMAND) ./manage.py test $(TESTS) --verbosity=2
4+
cd tests && DJANGO_SETTINGS_MODULE=tests.test_sqlite $(COVERAGE_COMMAND) ./manage.py test $(TESTS) --verbosity=2
55

66
coverage:
77
+make test COVERAGE_COMMAND='coverage run --source=ool --branch'

tests/tests/settings.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
DATABASES = {
1313
'default': {
1414
'ENGINE': 'django.db.backends.sqlite3',
15-
'NAME': '',
15+
'NAME': 'sqlite_database',
1616
}
1717
}
1818

tests/tests/test_sqlite.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
from settings import *
2+
3+
DATABASES = {
4+
'default': {
5+
'ENGINE': 'django.db.backends.sqlite3',
6+
'NAME': '',
7+
}
8+
}

0 commit comments

Comments
 (0)