[arch-commits] Commit in python-responses/repos/community-any (4 files)
Felix Yan
felixonmars at archlinux.org
Mon Apr 20 23:48:33 UTC 2020
Date: Monday, April 20, 2020 @ 23:48:32
Author: felixonmars
Revision: 617108
archrelease: copy trunk to community-any
Added:
python-responses/repos/community-any/PKGBUILD
(from rev 617107, python-responses/trunk/PKGBUILD)
python-responses/repos/community-any/pytest5.patch
(from rev 617107, python-responses/trunk/pytest5.patch)
Deleted:
python-responses/repos/community-any/PKGBUILD
python-responses/repos/community-any/pytest5.patch
---------------+
PKGBUILD | 62 ++++++++++++++++++++++++++++----------------------------
pytest5.patch | 56 +++++++++++++++++++++++++-------------------------
2 files changed, 59 insertions(+), 59 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-04-20 23:48:16 UTC (rev 617107)
+++ PKGBUILD 2020-04-20 23:48:32 UTC (rev 617108)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=python-responses
-pkgver=0.10.12
-pkgrel=1
-pkgdesc='A utility library for mocking out the `requests` Python library.'
-arch=('any')
-license=('Apache')
-url='https://github.com/getsentry/responses'
-depends=('python-requests' 'python-biscuits' 'python-six')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-pytest-cov' 'flake8' 'python-pytest-localserver')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/getsentry/responses/archive/$pkgver.tar.gz")
-sha512sums=('b97e0cce7d585b822f133db48916ec1fe371b7042983d9309b5192897ada78a0a0aec480f2c04f91196ac007a851fc9ba610ac5d0751d712913f9573f033dcae')
-
-build() {
- cd "$srcdir"/responses-$pkgver
- python setup.py build
-}
-
-check() {
- cd "$srcdir"/responses-$pkgver
- python setup.py pytest
-}
-
-package() {
- cd responses-$pkgver
- python setup.py install --root="$pkgdir" --optimize=1
-}
-
-# vim:set ts=2 sw=2 et:
Copied: python-responses/repos/community-any/PKGBUILD (from rev 617107, python-responses/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-04-20 23:48:32 UTC (rev 617108)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-responses
+pkgver=0.10.13
+pkgrel=1
+pkgdesc='A utility library for mocking out the `requests` Python library.'
+arch=('any')
+license=('Apache')
+url='https://github.com/getsentry/responses'
+depends=('python-requests' 'python-biscuits' 'python-six')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest-runner' 'python-pytest-cov' 'flake8' 'python-pytest-localserver')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/getsentry/responses/archive/$pkgver.tar.gz")
+sha512sums=('22c9d133927fa2a28525e718f73ca36157ec82a639f47f315ff46e879db5394593ebfe992c416c4be2956315570078c0ef774e91038198e9368c6549488e7d48')
+
+build() {
+ cd "$srcdir"/responses-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd "$srcdir"/responses-$pkgver
+ python setup.py pytest
+}
+
+package() {
+ cd responses-$pkgver
+ python setup.py install --root="$pkgdir" --optimize=1
+}
+
+# vim:set ts=2 sw=2 et:
Deleted: pytest5.patch
===================================================================
--- pytest5.patch 2020-04-20 23:48:16 UTC (rev 617107)
+++ pytest5.patch 2020-04-20 23:48:32 UTC (rev 617108)
@@ -1,28 +0,0 @@
-From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001
-From: Brandon Hong <brandon.hong at intel.com>
-Date: Wed, 9 Oct 2019 15:18:56 +0800
-Subject: [PATCH] Fix testcase test_assert_all_requests_are_fired failure
-
-Pytest 5.0.0 changed ExceptionInfo object's str() to returns the same as repr().
-(See, item #5412 of https://docs.pytest.org/en/latest/changelog.html#pytest-5-0-0-2019-06-28)
-This patch fixes the test failure by comparing expectation with str() result of
-ExceptionInfo's value member instaed of object itself.
-
-Signed-off-by: Brandon Hong <brandon.hong at intel.com>
----
- test_responses.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test_responses.py b/test_responses.py
-index 4740dfb..c2a4f01 100644
---- a/test_responses.py
-+++ b/test_responses.py
-@@ -701,7 +701,7 @@ def run():
- with responses.RequestsMock(assert_all_requests_are_fired=True) as m:
- m.add(responses.GET, "http://example.com", body=b"test")
- assert "http://example.com" in str(excinfo.value)
-- assert responses.GET in str(excinfo)
-+ assert responses.GET in str(excinfo.value)
-
- # check that assert_all_requests_are_fired default to True
- with pytest.raises(AssertionError):
Copied: python-responses/repos/community-any/pytest5.patch (from rev 617107, python-responses/trunk/pytest5.patch)
===================================================================
--- pytest5.patch (rev 0)
+++ pytest5.patch 2020-04-20 23:48:32 UTC (rev 617108)
@@ -0,0 +1,28 @@
+From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001
+From: Brandon Hong <brandon.hong at intel.com>
+Date: Wed, 9 Oct 2019 15:18:56 +0800
+Subject: [PATCH] Fix testcase test_assert_all_requests_are_fired failure
+
+Pytest 5.0.0 changed ExceptionInfo object's str() to returns the same as repr().
+(See, item #5412 of https://docs.pytest.org/en/latest/changelog.html#pytest-5-0-0-2019-06-28)
+This patch fixes the test failure by comparing expectation with str() result of
+ExceptionInfo's value member instaed of object itself.
+
+Signed-off-by: Brandon Hong <brandon.hong at intel.com>
+---
+ test_responses.py | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/test_responses.py b/test_responses.py
+index 4740dfb..c2a4f01 100644
+--- a/test_responses.py
++++ b/test_responses.py
+@@ -701,7 +701,7 @@ def run():
+ with responses.RequestsMock(assert_all_requests_are_fired=True) as m:
+ m.add(responses.GET, "http://example.com", body=b"test")
+ assert "http://example.com" in str(excinfo.value)
+- assert responses.GET in str(excinfo)
++ assert responses.GET in str(excinfo.value)
+
+ # check that assert_all_requests_are_fired default to True
+ with pytest.raises(AssertionError):
More information about the arch-commits
mailing list