Potential speedups
This commit is contained in:
parent
1333b0b3c3
commit
8d476804c2
|
@ -35,7 +35,7 @@ jobs:
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
env:
|
env:
|
||||||
SECRET_KEY: beepbeep
|
SECRET_KEY: beepbeep
|
||||||
DEBUG: true
|
DEBUG: false
|
||||||
DOMAIN: your.domain.here
|
DOMAIN: your.domain.here
|
||||||
BOOKWYRM_DATABASE_BACKEND: postgres
|
BOOKWYRM_DATABASE_BACKEND: postgres
|
||||||
MEDIA_ROOT: images/
|
MEDIA_ROOT: images/
|
||||||
|
@ -53,4 +53,4 @@ jobs:
|
||||||
EMAIL_USE_TLS: true
|
EMAIL_USE_TLS: true
|
||||||
ENABLE_PREVIEW_IMAGES: true
|
ENABLE_PREVIEW_IMAGES: true
|
||||||
run: |
|
run: |
|
||||||
pytest
|
pytest --reuse-db
|
||||||
|
|
|
@ -0,0 +1,14 @@
|
||||||
|
""" bookwyrm settings and configuration """
|
||||||
|
from bookwyrm.settings import *
|
||||||
|
|
||||||
|
MIGRATION_MODULES = {
|
||||||
|
'auth': None,
|
||||||
|
'contenttypes': None,
|
||||||
|
'default': None,
|
||||||
|
'sessions': None,
|
||||||
|
|
||||||
|
'core': None,
|
||||||
|
'profiles': None,
|
||||||
|
'snippets': None,
|
||||||
|
'scaffold_templates': None,
|
||||||
|
}
|
Loading…
Reference in New Issue