summaryrefslogtreecommitdiff
path: root/tests/frontend/track.py
diff options
context:
space:
mode:
authorBenjamin Schubert <ben.c.schubert@gmail.com>2019-02-28 19:31:03 +0000
committerbst-marge-bot <marge-bot@buildstream.build>2019-03-01 19:05:30 +0000
commitd6d33c94751bd47ca77d2b2e4ac246a2dd1328a6 (patch)
tree1739ba821e90215f89901bed10326f4142360f21 /tests/frontend/track.py
parent8f9b3dcdaca6f5179b79328b17b3e2c71db19e73 (diff)
downloadbuildstream-d6d33c94751bd47ca77d2b2e4ac246a2dd1328a6.tar.gz
tests: Remove unused variables
Diffstat (limited to 'tests/frontend/track.py')
-rw-r--r--tests/frontend/track.py19
1 files changed, 9 insertions, 10 deletions
diff --git a/tests/frontend/track.py b/tests/frontend/track.py
index 486a4123c..ba78bcdfa 100644
--- a/tests/frontend/track.py
+++ b/tests/frontend/track.py
@@ -44,7 +44,7 @@ def test_track(cli, tmpdir, datafiles, ref_storage, kind):
# the dev files, and then collect the initial ref.
#
repo = create_repo(kind, str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Generate the element
generate_element(repo, os.path.join(element_path, element_name))
@@ -109,7 +109,7 @@ def test_track_recurse(cli, tmpdir, datafiles, kind, amount):
# the dev files, and then collect the initial ref.
#
repo = create_repo(kind, str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Write out our test targets
element_names = []
@@ -164,7 +164,7 @@ def test_track_single(cli, tmpdir, datafiles):
# the dev files, and then collect the initial ref.
#
repo = create_repo('git', str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Write out our test targets
generate_element(repo, os.path.join(element_path, element_dep_name))
@@ -207,7 +207,7 @@ def test_track_recurse_except(cli, tmpdir, datafiles, kind):
# the dev files, and then collect the initial ref.
#
repo = create_repo(kind, str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Write out our test targets
generate_element(repo, os.path.join(element_path, element_dep_name))
@@ -251,7 +251,7 @@ def test_track_optional(cli, tmpdir, datafiles, ref_storage):
# the dev files, and then collect the initial ref.
#
repo = create_repo('git', str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Now create an optional test branch and add a commit to that,
# so two branches with different heads now exist.
@@ -307,7 +307,7 @@ def test_track_cross_junction(cli, tmpdir, datafiles, cross_junction, ref_storag
# the dev files, and then collect the initial ref.
#
repo = create_repo('git', str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Generate two elements using the git source, one in
# the main project and one in the subproject.
@@ -495,7 +495,7 @@ def test_cross_junction(cli, tmpdir, datafiles, ref_storage, kind):
})
repo = create_repo(kind, str(tmpdir.join('element_repo')))
- ref = repo.create(etc_files)
+ repo.create(etc_files)
generate_element(repo, repo_element_path)
@@ -605,7 +605,7 @@ def test_track_include_junction(cli, tmpdir, datafiles, ref_storage, kind):
# the dev files, and then collect the initial ref.
#
repo = create_repo(kind, str(tmpdir.join('element_repo')))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
# Generate the element
element = {
@@ -661,7 +661,6 @@ def test_track_junction_included(cli, tmpdir, datafiles, ref_storage, kind):
project = os.path.join(datafiles.dirname, datafiles.basename)
element_path = os.path.join(project, 'elements')
subproject_path = os.path.join(project, 'files', 'sub-project')
- sub_element_path = os.path.join(subproject_path, 'elements')
junction_path = os.path.join(element_path, 'junction.bst')
configure_project(project, {
@@ -691,7 +690,7 @@ def test_track_error_cannot_write_file(cli, tmpdir, datafiles):
})
repo = create_repo('git', str(tmpdir))
- ref = repo.create(dev_files_path)
+ repo.create(dev_files_path)
element_full_path = os.path.join(element_path, element_name)
generate_element(repo, element_full_path)