reformat files, add more tests

This commit is contained in:
dandds
2018-10-12 10:00:03 -04:00
parent ae7c644d91
commit df35725430
3 changed files with 21 additions and 0 deletions

View File

@@ -10,6 +10,7 @@ from tempfile import TemporaryDirectory
from atst.app import make_app, make_config
from atst.database import db as _db
from atst.domain.auth import logout
from atst.queue import queue
import tests.factories as factories
from tests.mocks import PDF_FILENAME
@@ -22,6 +23,7 @@ def app(request):
config = make_config()
config.update({"STORAGE_CONTAINER": upload_dir.name})
config.update({"RQ_QUEUES": ["test"]})
_app = make_app(config)