Add jasmine:ci and cucumber oauth back into travis
This commit is contained in:
parent
d245dc91a5
commit
f99dd3683d
1 changed files with 6 additions and 1 deletions
|
|
@ -9,7 +9,12 @@ namespace :ci do
|
|||
else
|
||||
["rake generate_fixtures", "rake spec"].each do |cmd|
|
||||
puts "Running bundle exec #{cmd}..."
|
||||
system("bundle exec #{cmd} --trace")
|
||||
system("bundle exec #{cmd}")
|
||||
raise "#{cmd} failed!" unless $?.exitstatus == 0
|
||||
end
|
||||
["rake jasmine:ci", "rake cucumber"].each do |cmd|
|
||||
puts "Running bundle exec #{cmd}..."
|
||||
system("export DISPLAY=:99.0 && GROUP=oauth bundle exec #{cmd}")
|
||||
raise "#{cmd} failed!" unless $?.exitstatus == 0
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in a new issue