From b8aa5dd7406652f87bf75a4ced9e03c9c6b85a40 Mon Sep 17 00:00:00 2001 From: Marvin Pohl Date: Fri, 20 Dec 2019 10:06:31 +0100 Subject: [PATCH] Fixed test_step_source: git step now containing --progress in the command line --- buildbot_gitea/test/test_step_source.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot_gitea/test/test_step_source.py b/buildbot_gitea/test/test_step_source.py index 61982d0..660850a 100644 --- a/buildbot_gitea/test/test_step_source.py +++ b/buildbot_gitea/test/test_step_source.py @@ -78,7 +78,7 @@ class TestGitea(sourcesteps.SourceStepMixin, config.ConfigErrorsMixin, unittest. # here we always ignore revision, and fetch the merge branch ExpectShell(workdir='wkdir', command=['git', 'fetch', '-t', - 'git@gitea.example.com:base/awesome_project.git', 'HEAD']) + 'git@gitea.example.com:base/awesome_project.git', 'HEAD', '--progress']) + 0, ExpectShell(workdir='wkdir', command=['git', 'reset', '--hard', 'FETCH_HEAD', '--'])