forked from pool/python-stestr
* Fixed the detection of test worker failures before reporting final result status OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-stestr?expand=0&rev=44
120 lines
3.7 KiB
RPMSpec
120 lines
3.7 KiB
RPMSpec
#
|
|
# spec file
|
|
#
|
|
# Copyright (c) 2021 SUSE LLC
|
|
#
|
|
# 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() python3-%{**}}
|
|
%global flavor @BUILD_FLAVOR@%{nil}
|
|
%if "%{flavor}" == "test"
|
|
%define psuffix -%{flavor}
|
|
%bcond_without test
|
|
%else
|
|
%define psuffix %{nil}
|
|
%bcond_with test
|
|
%endif
|
|
Name: python-stestr%{psuffix}
|
|
Version: 3.2.1
|
|
Release: 0
|
|
Summary: A test runner runner similar to testrepository
|
|
License: Apache-2.0
|
|
Group: Development/Languages/Python
|
|
URL: https://github.com/mtreinish/stestr
|
|
Source: https://files.pythonhosted.org/packages/source/s/stestr/stestr-%{version}.tar.gz
|
|
BuildRequires: %{python_module pbr >= 2.0.0}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: fdupes
|
|
BuildRequires: python-rpm-macros
|
|
BuildRequires: python3-dbm
|
|
Requires: python-PyYAML >= 3.10.0
|
|
Requires: python-fixtures >= 3.0.0
|
|
Requires: python-future
|
|
Requires: python-pbr >= 2.0.0
|
|
Requires: python-python-subunit >= 1.4.0
|
|
Requires: python-six >= 1.10.0
|
|
Requires: python-testtools >= 2.2.0
|
|
Requires: python-voluptuous >= 0.8.9
|
|
Requires(post): update-alternatives
|
|
Requires(postun):update-alternatives
|
|
BuildArch: noarch
|
|
%if %{with test}
|
|
BuildRequires: %{python_module PyYAML >= 3.10.0}
|
|
BuildRequires: %{python_module SQLAlchemy}
|
|
BuildRequires: %{python_module coverage >= 4.0}
|
|
BuildRequires: %{python_module ddt >= 1.0.1}
|
|
BuildRequires: %{python_module fixtures >= 3.0.0}
|
|
BuildRequires: %{python_module future}
|
|
BuildRequires: %{python_module pytest-mock}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module python-subunit >= 1.4.0}
|
|
BuildRequires: %{python_module six >= 1.10.0}
|
|
BuildRequires: %{python_module stestr >= %{version}}
|
|
BuildRequires: %{python_module testtools >= 2.2.0}
|
|
BuildRequires: %{python_module voluptuous >= 0.8.9}
|
|
%endif
|
|
%if "%{python_flavor}" == "python3" || "%{?python_provides}" == "python3"
|
|
Requires: python-dbm
|
|
%endif
|
|
%if !0%{?_no_weakdeps}
|
|
Recommends: python-SQLAlchemy
|
|
Recommends: python-subunit2sql >= 1.8.0
|
|
%endif
|
|
%python_subpackages
|
|
|
|
%description
|
|
stestr is a fork of the `testrepository`_ that concentrates on being a
|
|
dedicated test runner for python projects. The generic abstraction
|
|
layers which enabled testr to work with any subunit emitting runner are gone.
|
|
stestr hard codes python-subunit-isms into how it works. The code base is also
|
|
designed to try and be explicit, and to provide a python api that is documented
|
|
and has examples.
|
|
|
|
%prep
|
|
%setup -q -n stestr-%{version}
|
|
# do not test sql
|
|
rm stestr/tests/repository/test_sql.py
|
|
|
|
%if %{with test}
|
|
%check
|
|
export LC_ALL="en_US.UTF8"
|
|
%pytest stestr/tests -k 'not test_empty_with_pretty_out'
|
|
%endif
|
|
|
|
%if ! %{with test}
|
|
%build
|
|
export LC_ALL="en_US.UTF8"
|
|
%python_build
|
|
|
|
%install
|
|
export LC_ALL="en_US.UTF8"
|
|
%python_install
|
|
%python_clone -a %{buildroot}%{_bindir}/stestr
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
%post
|
|
%python_install_alternative stestr
|
|
|
|
%postun
|
|
%python_uninstall_alternative stestr
|
|
|
|
%files %{python_files}
|
|
%license LICENSE
|
|
%doc ChangeLog README.rst
|
|
%python_alternative %{_bindir}/stestr
|
|
%{python_sitelib}/*
|
|
%endif
|
|
|
|
%changelog
|