emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#42073: closed ([PATCH 5/6] gnu: Add python-pytest-remotedata.)


From: GNU bug Tracking System
Subject: bug#42073: closed ([PATCH 5/6] gnu: Add python-pytest-remotedata.)
Date: Sat, 25 Jul 2020 16:30:04 +0000

Your message dated Sat, 25 Jul 2020 18:29:34 +0200
with message-id <87pn8jsglt.fsf@gnu.org>
and subject line Re: [bug#42069] [PATCH 1/6] gnu: Add python-pytest-arraydiff.
has caused the debbugs.gnu.org bug report #42069,
regarding [PATCH 5/6] gnu: Add python-pytest-remotedata.
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
42069: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=42069
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH 5/6] gnu: Add python-pytest-remotedata. Date: Fri, 26 Jun 2020 19:15:41 -0300
* gnu/packages/check.scm (python-pytest-remotedata): New variable.
---
 gnu/packages/check.scm | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/gnu/packages/check.scm b/gnu/packages/check.scm
index 136bdcc6d2..5ed5675998 100644
--- a/gnu/packages/check.scm
+++ b/gnu/packages/check.scm
@@ -2199,6 +2199,40 @@ pytest report.")
 (define-public python2-pytest-capturelog
   (package-with-python2 python-pytest-capturelog))
 
+(define-public python-pytest-remotedata
+  (package
+    (name "python-pytest-remotedata")
+    (version "0.3.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (pypi-uri "pytest-remotedata" version))
+       (sha256
+        (base32 "1h6g6shib6z07azf12rnsa053470ggbd7hy3bnbw8nf3nza5h372"))))
+    (build-system python-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (replace 'check
+           (lambda* (#:key inputs outputs #:allow-other-keys)
+             ;; Make the installed plugin discoverable by Pytest.
+             (add-installed-pythonpath inputs outputs)
+             (invoke "pytest" "-vv" "-k"
+                     (string-append
+                      ;; These tests require internet access. Disable them.
+                      "not test_default_behavior"
+                      " and not test_strict_with_decorator")))))))
+    (propagated-inputs
+     `(("python-pytest" ,python-pytest)
+       ("python-six" ,python-six)))
+    (home-page "https://github.com/astropy/pytest-remotedata";)
+    (synopsis "Pytest plugin for controlling remote data access")
+    (description
+     "This package provides a plugin for the Pytest framework that allows
+developers to control unit tests that require access to data from the
+internet.")
+    (license license:bsd-3)))
+
 (define-public python-pytest-catchlog
   (package
     (name "python-pytest-catchlog")
-- 
2.20.1




--- End Message ---
--- Begin Message --- Subject: Re: [bug#42069] [PATCH 1/6] gnu: Add python-pytest-arraydiff. Date: Sat, 25 Jul 2020 18:29:34 +0200
Brett Gilio <brettg@gnu.org> writes:

> merge 42069 42070 42071 42072 42073 42074

Applied the whole series, thank you Vinicius!

Attachment: signature.asc
Description: PGP signature


--- End Message ---

reply via email to

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