1
0

- Switch to pytest and skip one failing test

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-WSGIProxy2?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal 2019-10-31 15:02:12 +00:00 committed by Git OBS Bridge
parent 4ce213ecb5
commit 0b54d1beae
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Oct 31 15:01:48 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
- Switch to pytest and skip one failing test
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Mar 6 10:44:27 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com> Wed Mar 6 10:44:27 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>

View File

@ -30,7 +30,6 @@ Version: 0.4.6
Release: 0 Release: 0
Summary: WSGI Proxy Implementation Summary: WSGI Proxy Implementation
License: MIT License: MIT
Group: Development/Languages/Python
URL: https://github.com/gawel/WSGIProxy2/ URL: https://github.com/gawel/WSGIProxy2/
Source: https://files.pythonhosted.org/packages/source/W/WSGIProxy2/WSGIProxy2-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/W/WSGIProxy2/WSGIProxy2-%{version}.tar.gz
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
@ -45,6 +44,7 @@ BuildArch: noarch
%if %{with test} %if %{with test}
BuildRequires: %{python_module WebOb} BuildRequires: %{python_module WebOb}
BuildRequires: %{python_module WebTest} BuildRequires: %{python_module WebTest}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module requests} BuildRequires: %{python_module requests}
BuildRequires: %{python_module six} BuildRequires: %{python_module six}
BuildRequires: %{python_module urllib3} BuildRequires: %{python_module urllib3}
@ -68,7 +68,8 @@ Proxy support for WebOb or classic WSGI applications
%check %check
%if %{with test} %if %{with test}
%python_exec setup.py test # test_quoted_utf8_url: randomly fails
%pytest -k 'not test_quoted_utf8_url'
%endif %endif
%if !%{with test} %if !%{with test}