diff options
author | Benjamin Schubert <ben.c.schubert@gmail.com> | 2019-06-05 14:55:50 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-06-06 14:34:00 +0000 |
commit | 123d2237e944ac55cb7edf9fb9bc01a7054d51f0 (patch) | |
tree | 53e290d329094277685126e1c78c4959f928ca0f /tests/testutils | |
parent | 571e77bd59ec39a0393c69f7a53bd62d410e81ad (diff) | |
download | buildstream-123d2237e944ac55cb7edf9fb9bc01a7054d51f0.tar.gz |
tests/testutils/site: Remove completely and migrate HAVE_OSTREE to examples
The only place needing to know about OSTREE is the flatpak-autotools for
the documentation. We can therefore move the OSTREE business here and
remove completely the site file, ending up with a single one left.
Diffstat (limited to 'tests/testutils')
-rw-r--r-- | tests/testutils/site.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/testutils/site.py b/tests/testutils/site.py deleted file mode 100644 index 8a75f00ae..000000000 --- a/tests/testutils/site.py +++ /dev/null @@ -1,9 +0,0 @@ -# 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 |