[arch-commits] Commit in python-responses/repos/community-any (4 files)
Felix Yan
felixonmars at gemini.archlinux.org
Thu Jan 20 23:13:43 UTC 2022
Date: Thursday, January 20, 2022 @ 23:13:43
Author: felixonmars
Revision: 1111582
archrelease: copy trunk to community-any
Added:
python-responses/repos/community-any/PKGBUILD
(from rev 1111581, python-responses/trunk/PKGBUILD)
python-responses/repos/community-any/pytest5.patch
(from rev 1111581, 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 2022-01-20 23:13:32 UTC (rev 1111581)
+++ PKGBUILD 2022-01-20 23:13:43 UTC (rev 1111582)
@@ -1,31 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=python-responses
-pkgver=0.16.0
-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' 'python-pytest-localserver')
-source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz")
-sha512sums=('d414e4cf281f64a953acdaf66b132fbd5e26edc978efdf545a3f8eecc5afdd6473c33a51f6086020c86c20f4de7aa94cf676c81d88a80ce5c7b84f7a741477ad')
-
-build() {
- cd responses-$pkgver
- python setup.py build
-}
-
-check() {
- cd responses-$pkgver
- 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 1111581, python-responses/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-01-20 23:13:43 UTC (rev 1111582)
@@ -0,0 +1,31 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-responses
+pkgver=0.17.0
+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' 'python-pytest-localserver')
+source=("https://github.com/getsentry/responses/archive/$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('b5885e221a0e5e1f93daef5bc6eb84bc97d3621044c6da9ad3d919b6e8025108de1541424d806d4b0e30a08c8039afc4a8a5c474a077289150ca459eb759e3f5')
+
+build() {
+ cd responses-$pkgver
+ python setup.py build
+}
+
+check() {
+ cd responses-$pkgver
+ 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 2022-01-20 23:13:32 UTC (rev 1111581)
+++ pytest5.patch 2022-01-20 23:13:43 UTC (rev 1111582)
@@ -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 1111581, python-responses/trunk/pytest5.patch)
===================================================================
--- pytest5.patch (rev 0)
+++ pytest5.patch 2022-01-20 23:13:43 UTC (rev 1111582)
@@ -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