diff options
author | Jürg Billeter <j@bitron.ch> | 2018-03-15 10:43:07 +0100 |
---|---|---|
committer | Jürg Billeter <j@bitron.ch> | 2018-07-17 07:56:40 +0200 |
commit | 8de8ef1f4b71c6b0d72d5e171b8abfedb2650d0b (patch) | |
tree | cb96ee0817667b9f13437172dda837829432e1d6 /tests/testutils/runcli.py | |
parent | 9b8790153a2d5cc81e5b27cec92313d5a377bfa7 (diff) | |
download | buildstream-8de8ef1f4b71c6b0d72d5e171b8abfedb2650d0b.tar.gz |
_platform: Use CAS artifact cache
Diffstat (limited to 'tests/testutils/runcli.py')
-rw-r--r-- | tests/testutils/runcli.py | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/tests/testutils/runcli.py b/tests/testutils/runcli.py index 658e38874..96d4ea457 100644 --- a/tests/testutils/runcli.py +++ b/tests/testutils/runcli.py @@ -19,8 +19,6 @@ import pytest # from _pytest.capture import MultiCapture, FDCapture -from tests.testutils.site import IS_LINUX - # Import the main cli entrypoint from buildstream._frontend import cli as bst_cli from buildstream import _yaml @@ -203,10 +201,7 @@ class Cli(): def remove_artifact_from_cache(self, project, element_name): cache_dir = os.path.join(project, 'cache', 'artifacts') - if IS_LINUX: - cache_dir = os.path.join(cache_dir, 'ostree', 'refs', 'heads') - else: - cache_dir = os.path.join(cache_dir, 'tar') + cache_dir = os.path.join(cache_dir, 'cas', 'refs', 'heads') cache_dir = os.path.splitext(os.path.join(cache_dir, 'test', element_name))[0] shutil.rmtree(cache_dir) |