-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
20 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,19 @@ | ||
require 'cucumber/rake/task' | ||
|
||
# Cucumber::Rake::Task.new :features do |t| | ||
# t.cucumber_opts = '-f junit features/wgoc_check_kai.feature --out .' | ||
# end | ||
|
||
Cucumber::Rake::Task.new :features do |t| | ||
t.cucumber_opts = '-f junit features/wgoc_check_kai.feature --out .' | ||
end | ||
t.cucumber_opts = '-f junit features/wgoc_check_kai.feature --out "C:/Documents and Settings/work/.jenkins/workspace/wg_merchant_oc_regression/"' | ||
end | ||
|
||
# namespace :features do | ||
# Cucumber::Rake::Task.new(:win7) do |t| | ||
# t.profile = "win7" | ||
# end | ||
|
||
Cucumber::Rake::Task.new :features_xp do |t| | ||
t.cucumber_opts = '-f junit features/wgoc_check_kai.feature --out C:\Documents and Settings\work\.jenkins\workspace\wg_merchant_oc_regression\' | ||
end | ||
# Cucumber::Rake::Task.new(:xp) do |t| | ||
# t.profile = "xp" | ||
# end | ||
# end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# config/cucumber.yml | ||
##YAML Template | ||
--- | ||
win7: -f junit features/wgoc_check_kai.feature --out . | ||
xp: -f junit features/wgoc_check_kai.feature --out C:/Documents and Settings/work/.jenkins/workspace/wg_merchant_oc_regression/ |