From a8d1cd733d685b6b646c6b20d696abb58ada405e Mon Sep 17 00:00:00 2001 From: Valentin Seitz Date: Mon, 20 Nov 2023 19:56:47 +0100 Subject: [PATCH] Lets try fetching everything should not be that bad in general.. --- tools/tests/systemtests/Systemtest.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/tests/systemtests/Systemtest.py b/tools/tests/systemtests/Systemtest.py index b8dae1d6a..6d80663ef 100644 --- a/tools/tests/systemtests/Systemtest.py +++ b/tools/tests/systemtests/Systemtest.py @@ -234,9 +234,7 @@ def _fetch_ref(self, repository: Path, ref: str): result = subprocess.run([ "git", "-C", os.fspath(repository.resolve()), - "fetch", - "origin", - f"{ref}:{ref}" + "fetch" ], check=True, timeout=60) if result.returncode != 0: raise RuntimeError(f"git command returned code {result.returncode}")