@@ -288,7 +288,7 @@ def __init__(self):
288
288
whitenoise_serve_static = pretend .call_recorder (lambda * a , ** kw : None ),
289
289
whitenoise_add_files = pretend .call_recorder (lambda * a , ** kw : None ),
290
290
whitenoise_add_manifest = pretend .call_recorder (lambda * a , ** kw : None ),
291
- scan = pretend .call_recorder (lambda categories , ignore : None ),
291
+ scan = pretend .call_recorder (lambda categories , ignore = False : None ),
292
292
commit = pretend .call_recorder (lambda : None ),
293
293
add_view_deriver = pretend .call_recorder (lambda * a , ** kw : None ),
294
294
)
@@ -429,6 +429,7 @@ def __init__(self):
429
429
pretend .call (".cache" ),
430
430
pretend .call (".email" ),
431
431
pretend .call (".accounts" ),
432
+ pretend .call ("social_pyramid" ),
432
433
pretend .call (".macaroons" ),
433
434
pretend .call (".oidc" ),
434
435
pretend .call (".attestations" ),
@@ -520,6 +521,7 @@ def __init__(self):
520
521
pretend .call (
521
522
categories = (
522
523
"pyramid" ,
524
+ "social_pyramid" ,
523
525
"warehouse" ,
524
526
),
525
527
ignore = ["warehouse.migrations.env" , "warehouse.celery" , "warehouse.wsgi" ],
0 commit comments