File tree 4 files changed +11
-2
lines changed
4 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 3
3
htmlcov
4
4
dist /
5
5
* .egg-info /
6
+ sqlite_database
Original file line number Diff line number Diff line change 1
1
TESTS =tests
2
2
3
3
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
5
5
6
6
coverage :
7
7
+make test COVERAGE_COMMAND=' coverage run --source=ool --branch'
Original file line number Diff line number Diff line change 12
12
DATABASES = {
13
13
'default' : {
14
14
'ENGINE' : 'django.db.backends.sqlite3' ,
15
- 'NAME' : '' ,
15
+ 'NAME' : 'sqlite_database ' ,
16
16
}
17
17
}
18
18
Original file line number Diff line number Diff line change
1
+ from settings import *
2
+
3
+ DATABASES = {
4
+ 'default' : {
5
+ 'ENGINE' : 'django.db.backends.sqlite3' ,
6
+ 'NAME' : '' ,
7
+ }
8
+ }
You can’t perform that action at this time.
0 commit comments