forked from pool/python-pytest-localserver
Markéta Machová
8b23ce5321
- Update to 0.6.0 * Drop support for Python 3.3 and 3.4 * Use setuptools_scm for managing versions of this package * Support sending chunked responses from the HTTP server * Switch SMTP server backend from smtpd to aiosmtpd - version 0.5.1.post0 * Explicitly list supported Python versions with python_requires in setup.py. - version 0.5.1 * Regenerate included certificate to use SHA-256 hash to avoid OpenSSL errors (fixes #2). * Add support for Python 3.10. * Drop support for Python 2.6. * Migrate repository to Github and update project metadata. OBS-URL: https://build.opensuse.org/request/show/991876 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-localserver?expand=0&rev=8
74 lines
2.5 KiB
RPMSpec
74 lines
2.5 KiB
RPMSpec
#
|
|
# spec file for package python-pytest-localserver
|
|
#
|
|
# Copyright (c) 2022 SUSE LLC
|
|
# Copyright (c) 2015 LISA GmbH, Bingen, Germany.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
%define skip_python2 1
|
|
Name: python-pytest-localserver
|
|
Version: 0.6.0
|
|
Release: 0
|
|
Summary: Plugin for py.test to test server connections locally
|
|
License: MIT
|
|
URL: https://github.com/pytest-dev/pytest-localserver
|
|
Source: https://files.pythonhosted.org/packages/source/p/pytest-localserver/pytest-localserver-%{version}.tar.gz
|
|
Patch0: remove_bindir.patch
|
|
BuildRequires: %{python_module Werkzeug >= 0.10}
|
|
BuildRequires: %{python_module aiosmtpd}
|
|
BuildRequires: %{python_module pytest >= 2.0.0}
|
|
BuildRequires: %{python_module requests}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-Werkzeug >= 0.10
|
|
Requires: python-pytest >= 2.0.0
|
|
BuildArch: noarch
|
|
%python_subpackages
|
|
|
|
%description
|
|
The pytest-localserver package is a plugin for the `pytest`_ testing framework
|
|
which enables you to test server connections locally.
|
|
|
|
Sometimes `monkeypatching`_ ``urllib2.urlopen()`` just does not cut it, for
|
|
instance if you work with ``urllib2.Request``, define your own openers/handlers
|
|
or work with ``httplib``. In these cases it may come in handy to have an HTTP
|
|
server running locally which behaves just like the real thing. Well, look
|
|
no further!
|
|
|
|
%prep
|
|
%setup -q -n pytest-localserver-%{version}
|
|
%autopatch -p1
|
|
sed -i "1d" pytest_localserver/{plugin,smtp}.py
|
|
|
|
%build
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%check
|
|
%pytest
|
|
|
|
%files %{python_files}
|
|
%doc README.rst
|
|
%license LICENSE
|
|
%{python_sitelib}/pytest_localserver
|
|
%{python_sitelib}/pytest_localserver-*-py*.egg-info
|
|
|
|
%changelog
|