summaryrefslogtreecommitdiff
path: root/tests/sources
diff options
context:
space:
mode:
authorChandan Singh <chandan@chandansingh.net>2019-10-26 19:07:03 +0100
committerChandan Singh <chandan@chandansingh.net>2019-11-04 11:01:14 +0000
commit576be1fc19bb58d25309a911589ceb9f08f7812d (patch)
treead72fe64328e2cedd5415dfaa6eb7dd7ecc5576d /tests/sources
parent66045d9c817992dbce855d4217ff00970ae7ff79 (diff)
downloadbuildstream-576be1fc19bb58d25309a911589ceb9f08f7812d.tar.gz
frontend: Remove tracking options from `bst build`
BREAKING CHANGE: Remove all tracking related options and flags from `bst build` command, as discussed on mailing list previously. See https://mail.gnome.org/archives/buildstream-list/2019-October/msg00009.html for the original proposal, and https://mail.gnome.org/archives/buildstream-list/2019-October/msg00024.html for a summary. At the same time, remove use of the removed options from our test suite.
Diffstat (limited to 'tests/sources')
-rw-r--r--tests/sources/keytest.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sources/keytest.py b/tests/sources/keytest.py
index 5b5ccaba0..d3eab8d6b 100644
--- a/tests/sources/keytest.py
+++ b/tests/sources/keytest.py
@@ -46,6 +46,6 @@ def test_generate_key(cli, datafiles):
res.assert_success()
assert cli.get_element_state(project_dir, "key-test.bst") == "fetch needed"
- res = cli.run(project=project_dir, args=["build", "--track", "key-test.bst"])
+ res = cli.run(project=project_dir, args=["build", "key-test.bst"])
res.assert_success()
assert cli.get_element_state(project_dir, "key-test.bst") == "cached"