Sha256: a96eb50ab947c587b170aaebc1d15a71aaa19635b54a5bbf94e64472220e6bbe

Contents?: true

Size: 1.08 KB

Versions: 9

Compression:

Stored size: 1.08 KB

Contents

ZIP_URL = "https://github.com/projectblacklight/blacklight-jetty/archive/v4.0.0.zip"

require 'jettywrapper'
require 'engine_cart/rake_task'

task :ci => 'jetty:clean' do
  ENV['environment'] = "test"
  jetty_params = Jettywrapper.load_config
  jetty_params[:startup_wait]= 60
  error = Jettywrapper.wrap(jetty_params) do
    Rake::Task["blacklight:fixtures"].invoke
    Rake::Task['blacklight:coverage'].invoke
  end
  raise "test failures: #{error}" if error
  # Only create documentation if the tests have passed
  #Rake::Task["active_fedora:doc"].invoke
end

namespace :blacklight do
  desc "Load fixtures"
  task :fixtures => [:generate] do
    within_test_app do
      system "rake solr:marc:index_test_data RAILS_ENV=test"
      abort "Error running fixtures" unless $?.success?
    end
  end

  desc "Run tests with coverage"
  task :coverage do
    ENV['COVERAGE'] = 'true'
    Rake::Task["spec"].invoke
  end

  desc "Clean out the test rails app"
  task :clean => ['engine_cart:clean'] do
  end

  desc "Create the test rails app"
  task :generate => ['engine_cart:generate'] do
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
blacklight-4.9.0 tasks/blacklight.rake
blacklight-4.8.0 tasks/blacklight.rake
blacklight-4.7.0 tasks/blacklight.rake
blacklight-4.7.0.pre1 tasks/blacklight.rake
blacklight-4.6.3 tasks/blacklight.rake
blacklight-4.6.2 tasks/blacklight.rake
blacklight-4.6.1 tasks/blacklight.rake
blacklight-4.6.0 tasks/blacklight.rake
blacklight-4.5.0 tasks/blacklight.rake