Date: Friday, June 12, 2020 @ 05:29:45 Author: felixonmars Revision: 642210
archrelease: copy trunk to community-any Added: python-responses/repos/community-any/PKGBUILD (from rev 642209, python-responses/trunk/PKGBUILD) python-responses/repos/community-any/pytest5.patch (from rev 642209, 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-06-12 05:29:26 UTC (rev 642209) +++ PKGBUILD 2020-06-12 05:29:45 UTC (rev 642210) @@ -1,31 +0,0 @@ -# Maintainer: Felix Yan <felixonm...@archlinux.org> - -pkgname=python-responses -pkgver=0.10.14 -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=('93812e3df0c745f878f443ccbfa96efdc4750c2af477a90319bc36e75e327816cb30b7606598879e40df213b03d9df07b0da2d2685c08ded672526b2919001fd') - -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 642209, python-responses/trunk/PKGBUILD) =================================================================== --- PKGBUILD (rev 0) +++ PKGBUILD 2020-06-12 05:29:45 UTC (rev 642210) @@ -0,0 +1,31 @@ +# Maintainer: Felix Yan <felixonm...@archlinux.org> + +pkgname=python-responses +pkgver=0.10.15 +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=('3da49823493ea65b2f0bcd0f63338552df8aa553ad3ac82d150c5753dafa2275a7e1c6499c4db82883a3a4b6348ca26158301842bdc84d3a1c9c73b15b716c61') + +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-06-12 05:29:26 UTC (rev 642209) +++ pytest5.patch 2020-06-12 05:29:45 UTC (rev 642210) @@ -1,28 +0,0 @@ -From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001 -From: Brandon Hong <brandon.h...@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.h...@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 642209, python-responses/trunk/pytest5.patch) =================================================================== --- pytest5.patch (rev 0) +++ pytest5.patch 2020-06-12 05:29:45 UTC (rev 642210) @@ -0,0 +1,28 @@ +From b9c17412445530298eb28917c1ef3a8f7cff971c Mon Sep 17 00:00:00 2001 +From: Brandon Hong <brandon.h...@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.h...@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):