[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
10/18: gnu: Add python-pytest-remotedata.
From: |
guix-commits |
Subject: |
10/18: gnu: Add python-pytest-remotedata. |
Date: |
Sat, 25 Jul 2020 12:49:17 -0400 (EDT) |
mbakke pushed a commit to branch master
in repository guix.
commit 04a3cb9984a81bbac2dc1f2ac8d00fc12cd4b96d
Author: Vinicius Monego <monego@posteo.net>
AuthorDate: Thu Jul 23 15:23:27 2020 -0300
gnu: Add python-pytest-remotedata.
* gnu/packages/python-check.scm (python-pytest-remotedata): New variable.
Signed-off-by: Marius Bakke <marius@gnu.org>
---
gnu/packages/python-check.scm | 35 +++++++++++++++++++++++++++++++++++
1 file changed, 35 insertions(+)
diff --git a/gnu/packages/python-check.scm b/gnu/packages/python-check.scm
index 5140057..506b955 100644
--- a/gnu/packages/python-check.scm
+++ b/gnu/packages/python-check.scm
@@ -247,6 +247,41 @@ developers to detect whether any file handles or other
file-like objects
were inadvertently left open at the end of a unit test.")
(license license:bsd-3)))
+(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")))))))
+ (native-inputs
+ `(("python-pytest" ,python-pytest)))
+ (propagated-inputs
+ `(("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-vcr
;; This commit fixes integration with pytest-5
(let ((commit "4d6c7b3e379a6a7cba0b8f9d20b704dc976e9f05")
- branch master updated (b890117 -> 07dbdbd), guix-commits, 2020/07/25
- 01/18: gnu: ao: Update source URI., guix-commits, 2020/07/25
- 04/18: gnu: Add syncthing-gtk., guix-commits, 2020/07/25
- 03/18: gnu: procenv: Check is a native input., guix-commits, 2020/07/25
- 02/18: gnu: libsigrok: Remove unused input., guix-commits, 2020/07/25
- 05/18: gnu: python-typing-extension: Update to 3.7.4.2., guix-commits, 2020/07/25
- 06/18: gnu: Add python-pytest-arraydiff., guix-commits, 2020/07/25
- 10/18: gnu: Add python-pytest-remotedata.,
guix-commits <=
- 13/18: gnu: Add python-cfgv., guix-commits, 2020/07/25
- 15/18: gnu: Add python-nodeenv., guix-commits, 2020/07/25
- 17/18: gnu: Add python-pre-commit., guix-commits, 2020/07/25
- 07/18: gnu: Add python-pytest-doctestplus., guix-commits, 2020/07/25
- 08/18: gnu: Add python-pytest-filter-subpackage., guix-commits, 2020/07/25
- 09/18: gnu: Add python-pytest-openfiles., guix-commits, 2020/07/25
- 11/18: gnu: Add python-pytest-mpl., guix-commits, 2020/07/25
- 12/18: gnu: Add python-covdefaults., guix-commits, 2020/07/25
- 14/18: gnu: Add python-identify., guix-commits, 2020/07/25
- 16/18: gnu: Add python-pytest-env., guix-commits, 2020/07/25