File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed
Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 5959 done
6060 - name : Test with pytest
6161 run : |
62+ mkdir -p workdir
6263 python -m pytest testapp
Original file line number Diff line number Diff line change 33* .pot
44* .pyc
55* .egg-info
6- * .sqlite3
76* .coverage
87* .tsbuildinfo
98* ~
1716docs /_build
1817dist
1918node_modules /
19+ workdir /*
2020htmlcov
2121adminsortable2 /static /adminsortable2 /js /adminsortable2. *
2222adminsortable2 /templates /adminsortable2 /edit_inline
Original file line number Diff line number Diff line change 2222DATABASES = {
2323 'default' : {
2424 'ENGINE' : 'django.db.backends.sqlite3' ,
25- 'NAME' : Path (__file__ ).parent / 'demo.sqlite3' ,
25+ 'NAME' : Path (__file__ ).parent . parent / 'workdir/ demo.sqlite3' ,
2626 'TEST' : {
27- 'NAME' : Path (__file__ ).parent / 'test.sqlite3' , # live_server requires a file rather than :memory:
27+ 'NAME' : Path (__file__ ).parent . parent / 'workdir/ test.sqlite3' , # live_server requires a file rather than :memory:
2828 'OPTIONS' : {
2929 'timeout' : 20 ,
3030 },
You can’t perform that action at this time.
0 commit comments