1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
# -*- coding: utf-8 -*-
#
# Copyright (C) 2018-2022 Matthias Klumpp <matthias@tenstral.net>
#
# SPDX-License-Identifier: LGPL-3.0+
import os
import sys
thisfile = __file__
if not os.path.isabs(thisfile):
thisfile = os.path.normpath(os.path.join(os.getcwd(), thisfile))
source_root = os.path.normpath(os.path.join(os.path.dirname(thisfile), '..'))
sys.path.append(os.path.normpath(os.path.join(source_root, 'src')))
pytest_plugins = ("tests.plugins.pytest_podman",)
__all__ = ['source_root', 'pytest_plugins']
|