From 81f133de156547a1f4bbb1f1e1592932d3097023 Mon Sep 17 00:00:00 2001 From: Xavier Morel Date: Wed, 12 Jun 2024 11:16:14 +0200 Subject: [PATCH] [IMP] test utils: don't ACL-protect repos by default This is quite frustrating when trying to access the frontend from a test especially combined with the lack of in-log feedback (before the previous commit). --- mergebot_test_utils/utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/mergebot_test_utils/utils.py b/mergebot_test_utils/utils.py index bc451293..c5473e93 100644 --- a/mergebot_test_utils/utils.py +++ b/mergebot_test_utils/utils.py @@ -158,6 +158,7 @@ def make_basic( 'name': prod.name, 'required_statuses': statuses, 'fp_remote_target': other.name if other else False, + 'group_id': False, }) env['res.partner'].search([ ('github_login', '=', config['role_reviewer']['user'])