b8ac75d475
args.logfd was moved to pmb.helper.logging.logfd Follow-up to https://gitlab.com/postmarketOS/pmbootstrap/-/merge_requests/2114
25 lines
640 B
Python
25 lines
640 B
Python
#!/usr/bin/env python3
|
|
# Copyright 2021 Oliver Smith
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
import add_pmbootstrap_to_import_path
|
|
import pmb.parse
|
|
import pytest
|
|
import sys
|
|
import os
|
|
|
|
|
|
@pytest.fixture
|
|
def args(request):
|
|
# Initialize args
|
|
pmaports = os.path.realpath(f"{os.path.dirname(__file__)}/../..")
|
|
sys.argv = ["pmbootstrap",
|
|
"--aports", pmaports,
|
|
"--log", "$WORK/log_testsuite_pmaports.txt"
|
|
"chroot"]
|
|
args = pmb.parse.arguments()
|
|
|
|
# Initialize logging
|
|
pmb.helpers.logging.init(args)
|
|
request.addfinalizer(pmb.helpers.logging.logfd.close)
|
|
return args
|