From 92c014bab7ee310dcd4f94c193f8dc88e723b31b Mon Sep 17 00:00:00 2001 From: Lunar Date: Sat, 1 Jun 2013 10:56:36 +0200 Subject: [PATCH] Silence git commands in cucumber step definitions --- features/step_definitions/git.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/features/step_definitions/git.rb b/features/step_definitions/git.rb index 50624ff..f2ba85e 100644 --- a/features/step_definitions/git.rb +++ b/features/step_definitions/git.rb @@ -5,11 +5,11 @@ Given /^un clone du Git contenant les adhésions$/ do create_dir 'main' cd 'main' @main_repository_path = current_dir - run_simple 'git init --bare' + run_simple 'git init --quiet --bare' cd '..' # Clone it now - run_simple 'git clone main clone' + run_simple 'git clone --quiet main clone' cd 'clone' create_dir 'Membres' BASE_SUBSCRIPTIONS.each_pair do |number, data| @@ -17,8 +17,8 @@ Given /^un clone du Git contenant les adhésions$/ do write_file file, render_subscription_file(data) run_simple "git add #{file}" end - run_simple 'git commit -m "Initial data set from fixtures"' - run_simple 'git push origin master' + run_simple 'git commit --quiet -m "Initial data set from fixtures"' + run_simple 'git push --quiet origin master' end Given /^le « pre-commit hook » correctement configuré$/ do -- 2.39.2