aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/conftest.py')
-rw-r--r--tests/unit/conftest.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/unit/conftest.py b/tests/unit/conftest.py
index e5d941d..3020f88 100644
--- a/tests/unit/conftest.py
+++ b/tests/unit/conftest.py
@@ -14,8 +14,10 @@ def test_app():
with TemporaryDirectory() as testdir:
testdb = Path(testdir).joinpath(
f'testdb_{datetime.now().strftime("%Y%m%dT%H%M%S")}')
- app = create_app()
- app.config.update({"TESTING": True, "AUTH_DB": testdb})
+ app = create_app({
+ "TESTING": True, "AUTH_DB": testdb,
+ "OAUTH2_ACCESS_TOKEN_GENERATOR": "tests.unit.auth.test_token.gen_token"
+ })
app.testing = True
yield app
# Clean up after ourselves