X-Git-Url: https://nos-oignons.net/gitweb/gestion-adh.git/blobdiff_plain/b4230b06ef1709d83f7be84e023b831b7771a940..92c014bab7ee310dcd4f94c193f8dc88e723b31b:/features/step_definitions/git.rb 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