diff options
Diffstat (limited to 'tests/integration/build-tree.py')
-rw-r--r-- | tests/integration/build-tree.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/integration/build-tree.py b/tests/integration/build-tree.py index df9006a27..91a18a1aa 100644 --- a/tests/integration/build-tree.py +++ b/tests/integration/build-tree.py @@ -70,8 +70,8 @@ def test_buildtree_pulled(cli, tmpdir, datafiles): }) assert cli.get_element_state(project, element_name) != 'cached' - # Pull from cache - result = cli.run(project=project, args=['pull', '--deps', 'all', element_name]) + # Pull from cache, ensuring cli options is set to pull the buildtree + result = cli.run(project=project, args=['--pull-buildtrees', 'pull', '--deps', 'all', element_name]) result.assert_success() # Check it's using the cached build tree |