[arch-commits] Commit in python-jose/trunk (PKGBUILD pytest5.patch)

Evangelos Foutras foutrelis at archlinux.org
Sat Nov 2 22:18:36 UTC 2019


    Date: Saturday, November 2, 2019 @ 22:18:36
  Author: foutrelis
Revision: 522287

Fix tests

Added:
  python-jose/trunk/pytest5.patch
Modified:
  python-jose/trunk/PKGBUILD

---------------+
 PKGBUILD      |    7 +++++--
 pytest5.patch |   27 +++++++++++++++++++++++++++
 2 files changed, 32 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2019-11-02 22:13:15 UTC (rev 522286)
+++ PKGBUILD	2019-11-02 22:18:36 UTC (rev 522287)
@@ -14,10 +14,13 @@
 checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'python-cryptography'
               'python2-cryptography' 'python-pycryptodome' 'python2-pycryptodome'
               'python-pytest-cov' 'python2-pytest-cov')
-source=("$pkgbase-$pkgver.tar.gz::https://github.com/mpdavis/python-jose/archive/$pkgver.tar.gz")
-sha512sums=('a39c3aa9acc6bcc0030e4435e499581043a820c54aa1a4b67ae478cf95f96f28755b03fa4453e484932a64865a61613a1ff4afe30249216e8f392638485693d7')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/mpdavis/python-jose/archive/$pkgver.tar.gz"
+        'pytest5.patch')
+sha512sums=('a39c3aa9acc6bcc0030e4435e499581043a820c54aa1a4b67ae478cf95f96f28755b03fa4453e484932a64865a61613a1ff4afe30249216e8f392638485693d7'
+            '0406340a45309e0b9411e451a68ca353454bb10bc34309264abc9b56fe4fed1c2eda705d5a7625a35333043030b0032ad70cf7da1feea673595c2fdf8423a234')
 
 prepare() {
+  patch -Np1 -d python-jose-$pkgver <pytest5.patch
   cp -a python-jose-$pkgver{,-py2}
 }
 

Added: pytest5.patch
===================================================================
--- pytest5.patch	                        (rev 0)
+++ pytest5.patch	2019-11-02 22:18:36 UTC (rev 522287)
@@ -0,0 +1,27 @@
+From a120278ad6a28abcc632673b47ef3af3c2c64d70 Mon Sep 17 00:00:00 2001
+From: Gasper Zejn <zelo.zejn at gmail.com>
+Date: Fri, 12 Apr 2019 10:30:37 +0200
+Subject: [PATCH] Fix incorrect use of pytest.raises(message=...)
+
+diff --git a/tests/test_jwt.py b/tests/test_jwt.py
+index 9ceb239..75ed3fc 100644
+--- a/tests/test_jwt.py
++++ b/tests/test_jwt.py
+@@ -62,7 +62,7 @@ def return_invalid_json(token, key, algorithms, verify=True):
+ 
+             jws.verify = return_invalid_json
+ 
+-            with pytest.raises(JWTError, message='Invalid payload string: ["a", "b"}'):
++            with pytest.raises(JWTError, match='Invalid payload string: '):
+                 jwt.decode(token, 'secret', ['HS256'])
+         finally:
+             jws.verify = old_jws_verify
+@@ -77,7 +77,7 @@ def return_encoded_array(token, key, algorithms, verify=True):
+ 
+             jws.verify = return_encoded_array
+ 
+-            with pytest.raises(JWTError, message='Invalid payload string: must be a json object'):
++            with pytest.raises(JWTError, match='Invalid payload string: must be a json object'):
+                 jwt.decode(token, 'secret', ['HS256'])
+         finally:
+             jws.verify = old_jws_verify



More information about the arch-commits mailing list