Coverage for apio/scons/SConstruct: 100%
4 statements
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-06 10:20 +0000
« prev ^ index » next coverage.py v7.11.0, created at 2025-11-06 10:20 +0000
1"""Apio's scons handler entry point."""
3# -*- coding: utf-8 -*-
4# -- This file is part of the Apio project
5# -- (C) 2016-2024 FPGAwars
6# -- Authors Juan Gonzáles, Jesús Arroyo
7# -- License GPLv2
9from apio.scons.scons_handler import SconsHandler
10from apio.common.common_util import maybe_wait_for_remote_debugger
13# -- If system env var APIO_SCONS_DEBUGGER is defined, regardless of its value,
14# -- we wait on a remote debugger to be attached, e.g. from Visual Studio Code.
15maybe_wait_for_remote_debugger("APIO_SCONS_DEBUGGER")
17# -- Service this scons request.
18SconsHandler.start()