1
0

- Add patch to work with new pytest:

* pytest4.patch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-CacheControl?expand=0&rev=14
This commit is contained in:
Tomáš Chvátal 2019-11-01 09:32:16 +00:00 committed by Git OBS Bridge
parent 32e0a65362
commit c705ac72c0
3 changed files with 50 additions and 1 deletions

41
pytest4.patch Normal file
View File

@ -0,0 +1,41 @@
From 2b886af2a3d0271bf5598ba3917e39395bb8f4b5 Mon Sep 17 00:00:00 2001
From: TheJokr <leo@dashsec.com>
Date: Fri, 25 Jan 2019 21:53:53 +0100
Subject: [PATCH] Removed cherrypy.server from pytest namespace
pytest_namespace was removed in pytest version 4.0.
The fixture now points directly to cherrypy.server.
---
tests/conftest.py | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/tests/conftest.py b/tests/conftest.py
index f9701cf..c581c0d 100644
--- a/tests/conftest.py
+++ b/tests/conftest.py
@@ -107,7 +107,7 @@ def __call__(self, env, start_response):
@pytest.fixture(scope="session")
def server():
- return pytest.server
+ return cherrypy.server
@pytest.fixture()
@@ -124,7 +124,7 @@ def get_free_port():
return ip, port
-def pytest_namespace():
+def pytest_configure(config):
cherrypy.tree.graft(SimpleApp(), "/")
ip, port = get_free_port()
@@ -136,7 +136,6 @@ def pytest_namespace():
logger.removeHandler(logger.handlers[0])
cherrypy.server.start()
- return {"server": cherrypy.server}
def pytest_unconfigure(config):

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Nov 1 09:31:12 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Add patch to work with new pytest:
* pytest4.patch
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Sep 18 09:15:22 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com> Wed Sep 18 09:15:22 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -25,6 +25,7 @@ License: Apache-2.0
Group: Development/Languages/Python Group: Development/Languages/Python
URL: https://github.com/ionrock/cachecontrol URL: https://github.com/ionrock/cachecontrol
Source: https://github.com/ionrock/cachecontrol/archive/v0.12.5.tar.gz#/CacheControl-%{version}.tar.gz Source: https://github.com/ionrock/cachecontrol/archive/v0.12.5.tar.gz#/CacheControl-%{version}.tar.gz
Patch0: pytest4.patch
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
@ -39,7 +40,7 @@ BuildRequires: python3-CherryPy
BuildRequires: python3-lockfile >= 0.9 BuildRequires: python3-lockfile >= 0.9
BuildRequires: python3-mock BuildRequires: python3-mock
BuildRequires: python3-msgpack BuildRequires: python3-msgpack
BuildRequires: python3-pytest < 4 BuildRequires: python3-pytest
BuildRequires: python3-redis >= 2.10.5 BuildRequires: python3-redis >= 2.10.5
BuildRequires: python3-requests BuildRequires: python3-requests
# /SECTION # /SECTION
@ -51,6 +52,7 @@ requests session object.
%prep %prep
%setup -q -n cachecontrol-%{version} %setup -q -n cachecontrol-%{version}
%patch0 -p1
%build %build
%python_build %python_build