# -*- python -*-
import os

from lsst.sconsUtils import scripts, env

ignoreList=[ "NightlyPipelineTest.py", "ResultsTest.py" ] # broken, will be fixed during nightly rewrite

envKeys = ['LSST_DB_AUTH', 'LSST_RNG_SEED', 'LSST_RNG_ALGORITHM']
for key in envKeys:
    if os.environ.has_key(key):
        env['ENV'][key] = os.environ[key]

scripts.BasicSConscript.tests(
    ignoreList=ignoreList,
    ccList=["kdtree.cc",
            "seedList.cc",
            "csv.cc",
            "earthPosition.cc",
            "sweepStructure.cc",
            "sourceClusterTable.cc",
           ]
)
