python-pytest/python-pytest-doc.spec
Ondřej Súkup 206af1b767 Accepting request 622958 from home:mimi_vx:branches:devel:languages:python:pytest
- update to pytest-3.6.3
- drop python_mock.patch
 * Fix ImportWarning triggered by explicit relative imports in assertion-rewritten
    package modules.
 * Fix error in pytest.approx when dealing with 0-dimension numpy arrays.
 * No longer raise ValueError when using the get_marker API.
 * Fix problem where log messages with non-ascii characters would not appear
    in the output log file.
 * No longer raise AttributeError when legacy marks can't be stored in functions.

- update to pytest-3.6.3
- drop python_mock.patch
 * Fix ImportWarning triggered by explicit relative imports in assertion-rewritten
    package modules.
 * Fix error in pytest.approx when dealing with 0-dimension numpy arrays.
 * No longer raise ValueError when using the get_marker API.
 * Fix problem where log messages with non-ascii characters would not appear
    in the output log file.
 * No longer raise AttributeError when legacy marks can't be stored in functions.

OBS-URL: https://build.opensuse.org/request/show/622958
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest?expand=0&rev=5
2018-07-16 00:25:54 +00:00

65 lines
2.0 KiB
RPMSpec

#
# spec file for package python-pytest-doc
#
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, 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 http://bugs.opensuse.org/
#
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-pytest-doc
Version: 3.6.3
Release: 0
Summary: Documentation for python-pytest, a testing tool with autodiscovery
License: MIT
Group: Documentation/HTML
URL: https://github.com/pytest-dev/pytest
Source: https://files.pythonhosted.org/packages/source/p/pytest/pytest-%{version}.tar.gz
BuildRequires: %{python_module hypothesis}
BuildRequires: %{python_module pytest = %{version}}
BuildRequires: %{python_module setuptools_scm}
BuildRequires: python-mock
BuildRequires: python-rpm-macros
BuildRequires: python3-Sphinx
BuildRequires: python3-sphinxcontrib-trio
Provides: %{python_module pytest-doc = %{version}}
BuildArch: noarch
%ifpython2
BuildRequires: python-funcsigs
%endif
%description
This package contains the documentation to pytest, a cross-project Python
testing tool.
%prep
%setup -q -n pytest-%{version}
%build
python3 setup.py build_sphinx
rm doc/build/html/.buildinfo
%install
# Only building documentation
#Check here because in main package creates a buildcycle
%check
%{python_expand py.test-%{$python_bin_suffix}}
%files
%doc CHANGELOG.rst
%doc doc/build/html
%license LICENSE
%changelog