#!/usr/bin/env python3
# PYTHON_ARGCOMPLETE_OK
#
# Copyright 2016-2024 Swiss National Supercomputing Centre (CSCS/ETH Zurich)
# ReFrame Project Developers. See the top-level LICENSE file for details.
#
# SPDX-License-Identifier: BSD-3-Clause

import os
import platform
import sys

prefix = os.path.normpath(
    os.path.join(os.path.abspath(os.path.dirname(__file__)), '..')
)
external = os.path.join(prefix, 'external', platform.machine())
sys.path = [prefix, external] + sys.path


import reframe.frontend.cli as cli  # noqa: F401, F403

if __name__ == '__main__':
    cli.main()
