forked from python-pytest/python-pytest
1 OBS-URL: https://build.opensuse.org/request/show/483801 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pytest?expand=0&rev=25
74 lines
2.3 KiB
RPMSpec
74 lines
2.3 KiB
RPMSpec
#
|
|
# spec file for package python-pytest-doc
|
|
#
|
|
# Copyright (c) 2017 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.0.7
|
|
Release: 0
|
|
Summary: Simple powerful testing with Python
|
|
License: MIT
|
|
Group: Development/Languages/Python
|
|
Url: http://pytest.org
|
|
Source: https://pypi.io/packages/source/p/pytest/pytest-%{version}.tar.gz
|
|
BuildRequires: python3-Sphinx
|
|
# Test requirements:
|
|
BuildRequires: %{python_module PyYAML}
|
|
BuildRequires: %{python_module hypothesis}
|
|
BuildRequires: %{python_module mock}
|
|
BuildRequires: %{python_module py >= 1.4.29}
|
|
BuildRequires: python-rpm-macros
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
BuildArch: noarch
|
|
Provides: %{python_module pytest-doc = %{version}}
|
|
|
|
%description
|
|
pytest helps you write better programs. It is a a mature full-featured,
|
|
cross-project Python testing tool. It provides:
|
|
|
|
* auto-discovery of test modules and functions,
|
|
* detailed info on failing assert statements (no need to remember
|
|
self.assert* names),
|
|
* modular fixtures for managing small or parametrized long-lived test resources.
|
|
* multi-paradigm support: you can use py.test to run test suites based on
|
|
unittest (or trial), nose,
|
|
* single-source compatibility to Python2.4 all the way up to Python3.3,
|
|
PyPy-1.9 and Jython-2.5.1, and
|
|
* many external plugins.
|
|
|
|
This package contains the documentation for pytest
|
|
|
|
%prep
|
|
%setup -q -n pytest-%{version}
|
|
|
|
%build
|
|
python3 setup.py build_sphinx
|
|
rm doc/build/html/.buildinfo
|
|
|
|
%install
|
|
# Only building documentation
|
|
|
|
%check
|
|
%python_exec setup.py test
|
|
|
|
%files
|
|
%defattr(-,root,root,-)
|
|
%doc CHANGELOG.rst LICENSE
|
|
%doc doc/build/html
|
|
|
|
%changelog
|