diff options
author | Valentin David <valentin.david@codethink.co.uk> | 2018-10-22 16:09:58 +0200 |
---|---|---|
committer | Valentin David <valentin.david@gmail.com> | 2018-10-26 14:21:18 +0000 |
commit | 2c6cb2302ac5b92b5bf9e515107e362b47607478 (patch) | |
tree | 5a25850e7f885a4063fd99b0193893338ec1e77a /tests/frontend | |
parent | 283887a512285bbf118761c147bd55fdb29a9a70 (diff) | |
download | buildstream-2c6cb2302ac5b92b5bf9e515107e362b47607478.tar.gz |
Fix some ruamel warnings during tests
Diffstat (limited to 'tests/frontend')
-rw-r--r-- | tests/frontend/yamlcache.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/frontend/yamlcache.py b/tests/frontend/yamlcache.py index 7b03c70cc..b6788a07e 100644 --- a/tests/frontend/yamlcache.py +++ b/tests/frontend/yamlcache.py @@ -103,7 +103,7 @@ def test_yamlcache_used(cli, tmpdir, ref_storage, with_junction, move_project): yc.put_from_key(prj, element_path, key, contents) # Show that a variable has been added - result = cli.run(project=project, args=['show', '--format', '%{vars}', 'test.bst']) + result = cli.run(project=project, args=['show', '--deps', 'none', '--format', '%{vars}', 'test.bst']) result.assert_success() data = yaml.safe_load(result.output) assert 'modified' in data @@ -135,7 +135,7 @@ def test_yamlcache_changed_file(cli, tmpdir, ref_storage, with_junction): _yaml.load(element_path, copy_tree=False, project=prj, yaml_cache=yc) # Show that a variable has been added - result = cli.run(project=project, args=['show', '--format', '%{vars}', 'test.bst']) + result = cli.run(project=project, args=['show', '--deps', 'none', '--format', '%{vars}', 'test.bst']) result.assert_success() data = yaml.safe_load(result.output) assert 'modified' in data |