summaryrefslogtreecommitdiff
path: root/tests/testutils/site.py
blob: 8a75f00ae77530ce6a6713c70079cfca9b37fdf9 (plain)
1
2
3
4
5
6
7
8
9
# Some things resolved about the execution site,
# so we dont have to repeat this everywhere
#

try:
    from bst_plugins_experimental.sources import _ostree  # pylint: disable=unused-import
    HAVE_OSTREE = True
except (ImportError, ValueError):
    HAVE_OSTREE = False