File Explorer

/proc/thread-self/root/proc/thread-self/root/lib64/python3.9/site-packages/hawkey/test

This explorer reads the filesystem of the server it runs on, so /workspace/user isn't present here. Browsing and the terminal still work against this server's own disk from /.

__init__.py1.8 KB · 48 lines
## Copyright (C) 2012-2013 Red Hat, Inc.## Licensed under the GNU Lesser General Public License Version 2.1## This library is free software; you can redistribute it and/or# modify it under the terms of the GNU Lesser General Public# License as published by the Free Software Foundation; either# version 2.1 of the License, or (at your option) any later version.## This library is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU# Lesser General Public License for more details.## You should have received a copy of the GNU Lesser General Public# License along with this library; if not, write to the Free Software# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA# from __future__ import absolute_importfrom . import _hawkey_test import hawkeyimport os EXPECT_SYSTEM_NSOLVABLES = _hawkey_test.EXPECT_SYSTEM_NSOLVABLESEXPECT_MAIN_NSOLVABLES = _hawkey_test.EXPECT_MAIN_NSOLVABLESEXPECT_UPDATES_NSOLVABLES = _hawkey_test.EXPECT_UPDATES_NSOLVABLESEXPECT_YUM_NSOLVABLES = _hawkey_test.EXPECT_YUM_NSOLVABLESFIXED_ARCH = _hawkey_test.FIXED_ARCHUNITTEST_DIR = _hawkey_test.UNITTEST_DIRYUM_DIR_SUFFIX = _hawkey_test.YUM_DIR_SUFFIX glob_for_repofiles = _hawkey_test.glob_for_repofiles class TestSackMixin(object):    def __init__(self, repo_dir):        self.repo_dir = repo_dir     def load_test_repo(self, name, fn, system=False):        path = os.path.join(self.repo_dir, fn)        _hawkey_test.load_repo(self, name, path, system)     def load_system_repo(self, *args, **kwargs):        path = os.path.join(self.repo_dir, "@System.repo")        _hawkey_test.load_repo(self, hawkey.SYSTEM_REPO_NAME, path, True)