[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 12/31] gnu: Add python-pytest.
From: |
David Thompson |
Subject: |
[PATCH 12/31] gnu: Add python-pytest. |
Date: |
Fri, 5 Sep 2014 11:18:18 -0400 |
* gnu/packages/python.scm (python-pytest, python2-pytest): New variables.
---
gnu/packages/python.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 6ef19d5..959a08b 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -1091,6 +1091,42 @@ introspection, and logging.")
(define-public python2-py
(package-with-python2 python-py))
+(define-public python-pytest
+ (package
+ (name "python-pytest")
+ (version "2.6.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "https://pypi.python.org/packages/source/p/pytest/pytest-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0g2w4p0n42wvz8rq4k6gnzpkakgz3g8sfanxk8jrsra9675snkcr"))
+ (modules '((guix build utils)))
+ (snippet
+ ;; One of the tests involves the /usr directory, so it fails.
+ '(substitute* "testing/test_argcomplete.py"
+ (("def test_remove_dir_prefix\\(self\\):")
+ "@pytest.mark.xfail\n def test_remove_dir_prefix(self):")))))
+ (build-system python-build-system)
+ (inputs
+ `(("python-setuptools" ,python-setuptools)
+ ("python-py" ,python-py)
+ ("python-nose" ,python-nose)
+ ("python-mock" ,python-mock)))
+ (home-page "http://pytest.org")
+ (synopsis "Python testing library")
+ (description
+ "Pytest is a testing tool that provides auto-discovery of test modules
+and functions, detailed info on failing assert statements, modular fixtures,
+and many external plugins.")
+ (license expat)))
+
+(define-public python2-pytest
+ (package-with-python2 python-pytest))
+
(define-public behave
(package
(name "behave")
--
2.0.1
- Re: [PATCH 22/31] gnu: Add python-pycrypto., (continued)
- [PATCH 23/31] gnu: Add python-oauthlib., David Thompson, 2014/09/05
- [PATCH 24/31] gnu: Add python-itsdangerous., David Thompson, 2014/09/05
- [PATCH 25/31] gnu: Add python-virtualenv., David Thompson, 2014/09/05
- [PATCH 26/31] gnu: Add python-pip., David Thompson, 2014/09/05
- [PATCH 12/31] gnu: Add python-pytest.,
David Thompson <=
- [PATCH 28/31] gnu: Add python-jinja2., David Thompson, 2014/09/05
- [PATCH 27/31] gnu: Add python-markupsafe., David Thompson, 2014/09/05
- [PATCH 29/31] gnu: Add python-docutils., David Thompson, 2014/09/05
- [PATCH 20/31] gnu: Add python-discover., David Thompson, 2014/09/05