blob: 7279c15cb0143856d71f7c72dd2fdfe6a3735f73 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# SPDX-License-Identifier: GPL-3.0-or-later
import pytest
import os
def pytest_configure():
pytest.KR_PYTESTS_DIR = os.path.dirname(os.path.realpath(__file__))
pytest.KR_ROOT_DIR = os.path.join(pytest.KR_PYTESTS_DIR, "..", "..")
pytest.KR_PREFIX = "kr-packaging-tests-"
|