[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#42069] [PATCH v2 5/6] gnu: Add python-pytest-remotedata.
From: |
Vinicius Monego |
Subject: |
[bug#42069] [PATCH v2 5/6] gnu: Add python-pytest-remotedata. |
Date: |
Thu, 23 Jul 2020 15:23:27 -0300 |
* gnu/packages/python-check.scm (python-pytest-remotedata): New variable.
---
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 de8cb09c48..507d9cf468 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 ;TODO: he 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
(package
(name "python-pytest-vcr")
--
2.20.1
- [bug#42069] [PATCH v2 1/6] gnu: Add python-pytest-arraydiff., Vinicius Monego, 2020/07/23
- [bug#42069] [PATCH v2 2/6] gnu: Add python-pytest-doctestplus., Vinicius Monego, 2020/07/23
- [bug#42069] [PATCH v2 3/6] gnu: Add python-pytest-filter-subpackage., Vinicius Monego, 2020/07/23
- [bug#42069] [PATCH v2 4/6] gnu: Add python-pytest-openfiles., Vinicius Monego, 2020/07/23
- [bug#42069] [PATCH v2 5/6] gnu: Add python-pytest-remotedata.,
Vinicius Monego <=
- [bug#42069] [PATCH v2 6/6] gnu: Add python-pytest-mpl., Vinicius Monego, 2020/07/23
- [bug#42069] [PATCH v2 1/6] gnu: Add python-pytest-arraydiff., Marius Bakke, 2020/07/25