From 78824ea38b3d2ac88590bef4e3c21b7193ea2e81 Mon Sep 17 00:00:00 2001 From: bom Date: Fri, 17 Nov 2023 12:50:20 +0100 Subject: [PATCH] Extend GitApiMock with push_follow_tags --- src/test/python/domain/helper.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/test/python/domain/helper.py b/src/test/python/domain/helper.py index 7c6df4c..413d06c 100644 --- a/src/test/python/domain/helper.py +++ b/src/test/python/domain/helper.py @@ -156,6 +156,9 @@ class GitApiMock: def push(self): pass + def push_follow_tags(self): + pass + def checkout(self, branch: str): pass