This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tristan/remove-plugins in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 0ec44992d24af9f45711751c8d218faa7c199ad7 Author: Tristan van Berkom <[email protected]> AuthorDate: Wed Mar 30 12:44:08 2022 +0900 tests/frontend/workspace.py: Use tar repo instead of git repo --- tests/frontend/workspace.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/frontend/workspace.py b/tests/frontend/workspace.py index 7b39e31..e6976ac 100644 --- a/tests/frontend/workspace.py +++ b/tests/frontend/workspace.py @@ -707,7 +707,7 @@ def test_buildable_no_ref(cli, tmpdir, datafiles): element_path = os.path.join(project, "elements") # Write out our test target without any source ref - repo = create_repo("git", str(tmpdir)) + repo = create_repo("tar", str(tmpdir)) element = {"kind": "import", "sources": [repo.source_config()]} _yaml.roundtrip_dump(element, os.path.join(element_path, element_name)) @@ -893,7 +893,7 @@ def test_list_supported_workspace(cli, tmpdir, datafiles, workspace_cfg, expecte # Create our repo object of the given source type with # the bin files, and then collect the initial ref. # - repo = create_repo("git", str(tmpdir)) + repo = create_repo("tar", str(tmpdir)) ref = repo.create(bin_files_path) # Write out our test target
