# -*- python -*-

# This file is part of utils.
#
# Developed for the LSST Data Management System.
# This product includes software developed by the LSST Project
# (https://www.lsst.org).
# See the COPYRIGHT file at the top-level directory of this distribution
# for details of code ownership.
#
# Use of this source code is governed by a 3-clause BSD-style
# license that can be found in the LICENSE file.

import os

from lsst.sconsUtils import env, scripts

scripts.BasicSConscript.tests(pyList=[])

# The test does not rely on this environment variable being set but
# if it is set then additional code paths are covered.
if (envvar := "CONDA_PREFIX") in os.environ:
    env["ENV"][envvar] = os.environ[envvar]
