no more oauth steps, so remove them from the runner and options

This commit is contained in:
Maxwell Salzberg 2012-05-22 11:06:36 -07:00
parent 9e80639ee8
commit 8752dd4d58
2 changed files with 1 additions and 2 deletions

View file

@ -12,7 +12,7 @@ namespace :ci do
system("bundle exec #{cmd}")
raise "#{cmd} failed!" unless $?.exitstatus == 0
end
["rake jasmine:ci", "rake cucumber"].each do |cmd|
["rake jasmine:ci"].each do |cmd|
puts "Running bundle exec #{cmd}..."
system("export DISPLAY=:99.0 && GROUP=oauth bundle exec #{cmd}")
raise "#{cmd} failed!" unless $?.exitstatus == 0

View file

@ -20,7 +20,6 @@ begin
t.profile = 'default'
cucumber_opts = ""
cucumber_opts << " -f pretty"
cucumber_opts << ((ENV["GROUP"] == "oauth") ? " --tags @oauth-group" : " --tags ~@oauth-group")
t.cucumber_opts = cucumber_opts
end