guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/05: gnu: Add python-flaky.


From: Marius Bakke
Subject: 03/05: gnu: Add python-flaky.
Date: Sat, 22 Jul 2017 09:01:22 -0400 (EDT)

mbakke pushed a commit to branch master
in repository guix.

commit 4e52739c61e1b54f4988181c425bb9cbb3d92378
Author: Marius Bakke <address@hidden>
Date:   Sat Jul 22 14:07:34 2017 +0200

    gnu: Add python-flaky.
    
    * gnu/packages/python.scm (python-flaky, python2-flaky): New variables.
---
 gnu/packages/python.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 82be9e8..619dc07 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -4639,6 +4639,35 @@ multivalue dictionary that retains the order of 
insertions and deletions.")
 (define-public python2-furl
   (package-with-python2 python-furl))
 
+(define-public python-flaky
+  (package
+    (name "python-flaky")
+    (version "3.4.0")
+    (source (origin
+              (method url-fetch)
+              (uri (pypi-uri "flaky" version))
+              (sha256
+               (base32
+                "18pkmf79rfkfpy1d2rrx3v55nxj762ilyk9rvd6s6dccxw58imsa"))))
+    (build-system python-build-system)
+    (arguments
+     ;; TODO: Tests require 'coveralls' and 'genty' which are not in Guix yet.
+     '(#:tests? #f))
+    (home-page "https://github.com/box/flaky";)
+    (synopsis "Automatically rerun flaky tests")
+    (description
+     "Flaky is a plugin for @code{nose} or @code{py.test} that automatically
+reruns flaky tests.
+
+Ideally, tests reliably pass or fail, but sometimes test fixtures must rely
+on components that aren't 100% reliable.  With flaky, instead of removing
+those tests or marking them to @address@hidden, they can be automatically
+retried.")
+    (license license:asl2.0)))
+
+(define-public python2-flaky
+  (package-with-python2 python-flaky))
+
 (define-public python-flask-babel
   (package
     (name "python-flask-babel")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]