diff options
author | James Ennis <james.ennis@codethink.co.uk> | 2019-08-28 15:36:14 +0100 |
---|---|---|
committer | bst-marge-bot <marge-bot@buildstream.build> | 2019-09-05 12:14:53 +0000 |
commit | 9a2c8890c7823b26629f6d62a302955d7ae81bd1 (patch) | |
tree | fa8a54853a9893d64e0a3ba877bbf7532cce61e5 /tests | |
parent | f35bf5125a776738adb173cfbd01336666a6e076 (diff) | |
download | buildstream-9a2c8890c7823b26629f6d62a302955d7ae81bd1.tar.gz |
cli.py: Allow checkout to handle artifact refs
Diffstat (limited to 'tests')
-rw-r--r-- | tests/frontend/buildcheckout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/frontend/buildcheckout.py b/tests/frontend/buildcheckout.py index 72974a620..67314d452 100644 --- a/tests/frontend/buildcheckout.py +++ b/tests/frontend/buildcheckout.py @@ -311,7 +311,7 @@ def test_build_checkout_using_ref(datafiles, cli): result.assert_success() key = cli.get_element_key(project, 'checkout-deps.bst') - checkout_args = ['artifact', 'checkout', '--directory', checkout, 'test/checkout-deps/' + key] + checkout_args = ['artifact', 'checkout', '--directory', checkout, '--deps', 'none', 'test/checkout-deps/' + key] result = cli.run(project=project, args=checkout_args) result.assert_success() |