mirror of
https://github.com/diaspora/diaspora.git
synced 2026-04-29 03:01:03 -04:00
12 lines
323 B
Ruby
12 lines
323 B
Ruby
namespace :ci do
|
|
desc "Run all specs and features"
|
|
task :ci => :environment do
|
|
system('/etc/init.d/xvfb start')
|
|
system('export DISPLAY=:99.0 && bundle exec rake')
|
|
exit_status = $?.exitstatus
|
|
system('/etc/init.d/xvfb stop')
|
|
raise "tests failed!" unless exit_status == 0
|
|
end
|
|
end
|
|
task :ci => "ci:ci"
|