14
0
forked from pool/python-PyJWT

Accepting request 652151 from home:glaubitz:branches:devel:languages:python

- Add patch to fix testsuite with pytest 3.9.0:
  * pyjwt-pytest390.patch

OBS-URL: https://build.opensuse.org/request/show/652151
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-PyJWT?expand=0&rev=37
This commit is contained in:
Tomáš Chvátal
2018-11-27 12:00:34 +00:00
committed by Git OBS Bridge
parent d2ea07281f
commit 15ac49e4b8
3 changed files with 33 additions and 0 deletions

24
pyjwt-pytest390.patch Normal file
View File

@@ -0,0 +1,24 @@
diff -Nru PyJWT-1.6.4.orig/tests/test_api_jws.py PyJWT-1.6.4/tests/test_api_jws.py
--- PyJWT-1.6.4.orig/tests/test_api_jws.py 2018-03-03 15:45:20.000000000 +0100
+++ PyJWT-1.6.4/tests/test_api_jws.py 2018-11-27 12:48:14.393379717 +0100
@@ -294,7 +294,7 @@
jws.decode, example_jws, key=example_secret,
options={'verify_signature': False},
)
- except AssertionError:
+ except pytest.fail.Exception:
pass
else:
assert False, "Unexpected DeprecationWarning raised."
diff -Nru PyJWT-1.6.4.orig/tests/test_api_jwt.py PyJWT-1.6.4/tests/test_api_jwt.py
--- PyJWT-1.6.4.orig/tests/test_api_jwt.py 2018-03-18 14:35:35.000000000 +0100
+++ PyJWT-1.6.4/tests/test_api_jwt.py 2018-11-27 12:48:24.217463350 +0100
@@ -516,7 +516,7 @@
pytest.deprecated_call(
jwt.decode, jwt_message, secret, verify=False,
)
- except AssertionError:
+ except pytest.fail.Exception:
pass
else:
assert False, "Unexpected DeprecationWarning raised."