From 26fa026eb200796834f66e04591c13f953c749d5 Mon Sep 17 00:00:00 2001 From: xinsheng3 Date: Fri, 24 Jan 2025 14:42:30 +0800 Subject: [PATCH] skip test case which need network --- python-jwt.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/python-jwt.spec b/python-jwt.spec index 4d95549..0686377 100644 --- a/python-jwt.spec +++ b/python-jwt.spec @@ -2,7 +2,7 @@ %bcond_without tests Name: python-jwt Version: 2.9.0 -Release: 1 +Release: 2 Summary: JSON Web Token implementation in Python License: MIT URL: https://github.com/jpadilla/pyjwt @@ -40,6 +40,7 @@ Requires: python%{python3_pkgversion}-cryptography %check %if %{with tests} +rm -f tests/test_jwks_client.py %{__python3} -m pytest %endif @@ -53,6 +54,9 @@ Requires: python%{python3_pkgversion}-cryptography %doc README.rst %changelog +* Fri Jan 24 2025 xinsheng - 2.9.0-2 +- skip test case which need network + * Mon Aug 19 2024 lilu - 2.9.0-1 - Update package to version 2.9.0: - Add support for Python 3.12 -- Gitee