Skip to content

Commit

Permalink
added config.py for authn tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zcqian committed Dec 25, 2021
1 parent d1e155b commit 052d2b3
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/web/auth/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
from handlers import *
from authn_provider import *

APP_LIST = [
(r'/user1', BaseUserIdHandler),
(r'/user2', SpecialCookieUserIdHandler),
]

AUTHN_PROVIDERS = [
(DummyCookieAuthProvider, {}),
(DummyBearerAuthProvider, {}),
]

0 comments on commit 052d2b3

Please sign in to comment.