File: ruby-tests.rake

package info (click to toggle)
ruby-parallel 1.22.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 464 kB
  • sloc: ruby: 1,930; makefile: 4
file content (15 lines) | stat: -rw-r--r-- 616 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'gem2deb/rake/spectask'

# Upstream recommended to disable running the test suite, and everytime we try
# to run it again, sooner or later we get FTBFS bugs due to random failures.
# Instead of running the upstream test suite, let's run just some very basic
# smoke tests of our own.
#
# Links:
# https://github.com/grosser/parallel/issues/227
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=905648
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1019646
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1017218
Gem2Deb::Rake::RSpecTask.new do |spec|
  spec.pattern = 'debian/tests/*_spec.rb'
end