We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4d139d2 commit 615c6edCopy full SHA for 615c6ed
.gitignore
@@ -3,7 +3,7 @@
3
*.pot
4
*.pyc
5
*.egg-info
6
-*.sqlite
+*.sqlite3
7
*.coverage
8
*~
9
.DS_Store
@@ -18,4 +18,3 @@ dist
18
node_modules/
19
htmlcov
20
adminsortable2/static/adminsortable2/js/adminsortable2.*
21
-testapp/test.db
testapp/settings.py
@@ -22,7 +22,13 @@
22
DATABASES = {
23
'default': {
24
'ENGINE': 'django.db.backends.sqlite3',
25
- 'NAME': str(Path(__file__).parent / 'test.db'), # live_server requires a file rather than :memory:
+ 'NAME': Path(__file__).parent / 'demo.sqlite3',
26
+ 'TEST': {
27
+ 'NAME': Path(__file__).parent / 'test.sqlite3', # live_server requires a file rather than :memory:
28
+ 'OPTIONS': {
29
+ 'timeout': 20,
30
+ },
31
32
}
33
34
0 commit comments