File: ruby-tests.rake

package info (click to toggle)
ruby-concurrent 1.1.6%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 30,284 kB
  • sloc: ruby: 30,875; java: 6,117; ansic: 288; makefile: 9; sh: 6
file content (12 lines) | stat: -rw-r--r-- 308 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
require 'gem2deb/rake/spectask'

if ENV['AUTOPKGTEST_TMP'] then
  Gem2Deb::Rake::RSpecTask.new do |spec|
    spec.rspec_opts = '--color --backtrace --format documentation --seed 1'
    spec.pattern = './spec/concurrent/*_spec.rb'
  end
else
  task :default do
    puts "Disable tests during build"
  end
end