summaryrefslogtreecommitdiff
path: root/tests/conftest.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/conftest.py')
-rwxr-xr-xtests/conftest.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/conftest.py b/tests/conftest.py
index 138ae0745..77f8666a6 100755
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -21,7 +21,6 @@
#
import os
import pytest
-from buildstream._platform.platform import Platform
from buildstream.testing import register_repo_kind, sourcetests_collection_hook
from buildstream.testing.integration import integration_cache # pylint: disable=unused-import
@@ -103,22 +102,6 @@ def remote_services(request):
#################################################
-# Automatically reset the platform #
-#################################################
-#
-# This might need some refactor, maybe buildstream
-# needs to cleanup more gracefully and we could remove this.
-#
-def clean_platform_cache():
- Platform._instance = None
-
-
-@pytest.fixture(autouse=True)
-def ensure_platform_cache_is_clean():
- clean_platform_cache()
-
-
-#################################################
# Setup for templated source tests #
#################################################
register_repo_kind('git', Git)