2017-05-16 14:28:46 +02:00
|
|
|
#
|
|
|
|
# spec file for package python-pytest-mock
|
|
|
|
#
|
2018-01-16 09:37:39 +01:00
|
|
|
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
2017-05-16 14:28:46 +02:00
|
|
|
#
|
|
|
|
# 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 http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2018-01-16 09:37:39 +01:00
|
|
|
%define oldpython python
|
2017-05-16 14:28:46 +02:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
2018-01-16 09:37:39 +01:00
|
|
|
%bcond_without python2
|
2018-04-26 13:34:36 +02:00
|
|
|
Name: python-pytest-mock
|
|
|
|
Version: 1.9.0
|
2017-05-16 14:28:46 +02:00
|
|
|
Release: 0
|
|
|
|
Summary: Thin-wrapper around the mock package for easier use with pytest
|
|
|
|
License: MIT
|
|
|
|
Group: Development/Languages/Python
|
2018-04-26 13:34:36 +02:00
|
|
|
URL: https://github.com/pytest-dev/pytest-mock
|
|
|
|
Source: https://files.pythonhosted.org/packages/source/p/pytest-mock/pytest-mock-%{version}.tar.gz
|
2017-08-14 12:38:47 +02:00
|
|
|
BuildRequires: %{python_module pytest}
|
2018-03-05 13:36:03 +01:00
|
|
|
BuildRequires: %{python_module setuptools >= 36}
|
2017-05-16 14:28:46 +02:00
|
|
|
BuildRequires: %{python_module setuptools_scm}
|
2017-08-14 12:38:47 +02:00
|
|
|
BuildRequires: fdupes
|
2017-05-16 14:28:46 +02:00
|
|
|
BuildRequires: python-rpm-macros
|
|
|
|
Requires: python-pytest
|
2018-01-16 09:37:39 +01:00
|
|
|
BuildArch: noarch
|
|
|
|
%if %{with python2}
|
|
|
|
BuildRequires: %{oldpython}-mock
|
|
|
|
%endif
|
2017-05-16 14:28:46 +02:00
|
|
|
%ifpython2
|
2018-01-16 09:37:39 +01:00
|
|
|
Requires: %{oldpython}-mock
|
2017-05-16 14:28:46 +02:00
|
|
|
%else
|
|
|
|
Recommends: python-mock
|
|
|
|
%endif
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
This plugin installs a ``mocker`` fixture which is a thin-wrapper around the patching API
|
|
|
|
provided by the `mock` package,
|
|
|
|
but with the benefit of not having to worry about undoing patches at the end
|
|
|
|
of a test
|
|
|
|
|
|
|
|
%prep
|
2018-04-26 13:34:36 +02:00
|
|
|
%setup -q -n pytest-mock-%{version}
|
2017-05-16 14:28:46 +02:00
|
|
|
|
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%python_install
|
2017-08-14 12:38:47 +02:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
2017-05-16 14:28:46 +02:00
|
|
|
|
|
|
|
%check
|
2017-08-14 12:38:47 +02:00
|
|
|
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib} py.test-%{$python_version} test_pytest_mock.py
|
|
|
|
%python_expand rm -rf %{buildroot}%{$python_sitelib}/__pycache__
|
2017-05-16 14:28:46 +02:00
|
|
|
|
|
|
|
%files %{python_files}
|
2018-01-16 09:37:39 +01:00
|
|
|
%doc CHANGELOG.rst
|
|
|
|
%license LICENSE
|
2017-05-16 14:28:46 +02:00
|
|
|
%{python_sitelib}/*
|
|
|
|
|
|
|
|
%changelog
|