[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
26/36: gnu: Add ruby-test-queue.
From: |
guix-commits |
Subject: |
26/36: gnu: Add ruby-test-queue. |
Date: |
Fri, 17 Jul 2020 23:24:45 -0400 (EDT) |
apteryx pushed a commit to branch master
in repository guix.
commit 12ed6da4fe4dc014c230ebbc857cfc698347ea2f
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Jul 14 22:36:53 2020 -0400
gnu: Add ruby-test-queue.
* gnu/packages/ruby.scm (ruby-test-queue): New variable.
---
gnu/packages/ruby.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/ruby.scm b/gnu/packages/ruby.scm
index f80bba9..0fae903 100644
--- a/gnu/packages/ruby.scm
+++ b/gnu/packages/ruby.scm
@@ -6629,6 +6629,38 @@ expressions. It comprises the following components:
(home-page "https://github.com/ammar/regexp_parser")
(license license:expat)))
+(define-public ruby-test-queue
+ (package
+ (name "ruby-test-queue")
+ (version "0.4.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (rubygems-uri "test-queue" version))
+ (sha256
+ (base32
+ "0hvm3n1qrqxqilhqk4rjivw3gcrd08zz1i6am9qzg1ppjxv6f36f"))))
+ (build-system ruby-build-system)
+ (arguments
+ '(#:phases
+ (modify-phases %standard-phases
+ (replace 'check
+ (lambda* (#:key tests? #:allow-other-keys)
+ (when tests?
+ (invoke "rspec"))
+ #t)))))
+ (native-inputs
+ `(("ruby-rspec" ,ruby-rspec)))
+ (synopsis "Minitest/RSpec parallel test runner for CI environments")
+ (description "The test-queue module is a parallel test runner,
+built using a centralized queue to ensure optimal distribution of
+tests between workers. It is specifically optimized for Continuous
+Integration (CI) environments: build statistics from each run are
+stored locally and used to sort the queue at the beginning of the next
+run.")
+ (home-page "https://github.com/tmm1/test-queue")
+ (license license:expat)))
+
(define-public ruby-rubocop
(package
(name "ruby-rubocop")
- 24/36: gnu: Add ruby-regexp-property-values., (continued)
- 24/36: gnu: Add ruby-regexp-property-values., guix-commits, 2020/07/17
- 25/36: gnu: Add ruby-regexp-parser., guix-commits, 2020/07/17
- 27/36: gnu: ruby-rubocop: Update to 0.88.0., guix-commits, 2020/07/17
- 28/36: gnu: Add ruby-rubocop-performance., guix-commits, 2020/07/17
- 29/36: gnu: Add ruby-gimme., guix-commits, 2020/07/17
- 30/36: gnu: Add ruby-standard., guix-commits, 2020/07/17
- 34/36: gnu: ruby-rouge: Update to 3.21.0., guix-commits, 2020/07/17
- 12/36: gnu: Add ruby-polyglot., guix-commits, 2020/07/17
- 19/36: gnu: ruby-ast: Update to 2.4.1., guix-commits, 2020/07/17
- 21/36: gnu: Add ruby-rexml., guix-commits, 2020/07/17
- 26/36: gnu: Add ruby-test-queue.,
guix-commits <=
- 31/36: gnu: Add ruby-chunky-png., guix-commits, 2020/07/17
- 32/36: gnu: Add ruby-text-hyphen., guix-commits, 2020/07/17
- 33/36: gnu: Add ruby-open-uri-cached., guix-commits, 2020/07/17
- 35/36: gnu: Add ruby-asciidoctor-pdf., guix-commits, 2020/07/17
- 36/36: gnu: ruby-yard: Make the package reproducible., guix-commits, 2020/07/17