Cmcmahon has submitted this change and it was merged.

Change subject: Fixed Rake tasks so they reports failures properly
......................................................................


Fixed Rake tasks so they reports failures properly

Bug: 47042
Change-Id: Ic95f9dcfbc4a2b36db404b1bd228fdd9b89f34bf
---
M Rakefile
1 file changed, 2 insertions(+), 2 deletions(-)

Approvals:
  Cmcmahon: Verified; Looks good to me, approved
  jenkins-bot: Verified



diff --git a/Rakefile b/Rakefile
index ad2a90b..80ca5f5 100755
--- a/Rakefile
+++ b/Rakefile
@@ -13,11 +13,11 @@
 
 desc 'Run all Cucumber features in parallel.'
 task :parallel do
-  `bundle exec parallel_cucumber features/ -n #{processes} --test-options 
'--profile ci'`
+  sh "bundle exec parallel_cucumber features/ -n #{processes} --test-options 
'--profile ci'"
 end
 
 def run_tests(browser)
-  `bundle exec parallel_cucumber features/ -n #{processes} --test-options 
'--profile #{browser}'`
+  sh "bundle exec parallel_cucumber features/ -n #{processes} --test-options 
'--profile #{browser}'"
 end
 
 desc 'Run all Cucumber features in parallel, do not run tests that fail in 
Chrome.'

-- 
To view, visit https://gerrit.wikimedia.org/r/58298
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic95f9dcfbc4a2b36db404b1bd228fdd9b89f34bf
Gerrit-PatchSet: 1
Gerrit-Project: qa/browsertests
Gerrit-Branch: master
Gerrit-Owner: Zfilipin <[email protected]>
Gerrit-Reviewer: Cmcmahon <[email protected]>
Gerrit-Reviewer: jenkins-bot

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to