From b8ac75d47503e036e39472db429e5e85ce24ca7b Mon Sep 17 00:00:00 2001 From: Alexey Minnekhanov Date: Mon, 11 Oct 2021 16:08:39 +0300 Subject: [PATCH] CI: follow-up rework according to pmbootstrap master (MR 2595) args.logfd was moved to pmb.helper.logging.logfd Follow-up to https://gitlab.com/postmarketOS/pmbootstrap/-/merge_requests/2114 --- .ci/testcases/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/testcases/conftest.py b/.ci/testcases/conftest.py index 194ed3b44..58aea08ff 100644 --- a/.ci/testcases/conftest.py +++ b/.ci/testcases/conftest.py @@ -21,5 +21,5 @@ def args(request): # Initialize logging pmb.helpers.logging.init(args) - request.addfinalizer(args.logfd.close) + request.addfinalizer(pmb.helpers.logging.logfd.close) return args