gnu: ruby-ruby-prof: Disable a flaky test.

A test was found to fail non-deterministically.

* gnu/packages/ruby.scm (ruby-ruby-prof)[phases]: Add the 'delete-flaky-test
phase.
This commit is contained in:
Maxim Cournoyer 2020-07-10 15:19:38 -04:00
parent 257dee505e
commit 661ad8d7c5
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -6524,6 +6524,14 @@ (define-public ruby-ruby-prof
((".*require \"bundler/setup\".*" all)
(string-append all " require 'bundler/gem_tasks'\n")))
#t))
;; The LineNumbersTest test fails non-deterministically (see:
;; https://github.com/ruby-prof/ruby-prof/issues/276).
(add-after 'extract-gemspec 'delete-flaky-test
(lambda _
(delete-file "test/line_number_test.rb")
(substitute* "ruby-prof.gemspec"
(("\"test/line_number_test\\.rb\"\\.freeze, ") ""))
#t))
(add-before 'check 'compile
(lambda _
(invoke "rake" "compile"))))))