Accepting request 182133 from Cloud:OpenStack:Factory

- Introduce a build conditional for running tests to break build cycle
  with python-oslo.config

OBS-URL: https://build.opensuse.org/request/show/182133
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-pbr?expand=0&rev=2
This commit is contained in:
Stephan Kulow 2013-07-04 16:06:10 +00:00 committed by Git OBS Bridge
parent 45eb30507b
commit e60bf3ecbe
2 changed files with 14 additions and 0 deletions

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jul 4 07:29:43 UTC 2013 - speilicke@suse.com
- Introduce a build conditional for running tests to break build cycle
with python-oslo.config
-------------------------------------------------------------------
Tue Jul 2 16:06:42 UTC 2013 - dmueller@suse.com

@ -16,6 +16,10 @@
#
# A build cycle exists between python-extras and python-testtools. Thus, only
# enable testing with a build conditional (off by default):
%bcond_with tests
Name: python-pbr
Version: 0.5.17
Release: 0
@ -29,6 +33,7 @@ BuildRequires: python-devel
# Documentation requirements:
BuildRequires: python-Sphinx
# Test requirements:
%if %{with tests}
BuildRequires: python-coverage >= 3.6
%if 0%{?suse_version} <= 1110
BuildRequires: python-discover
@ -44,6 +49,7 @@ BuildRequires: python-testrepository >= 0.0.13
BuildRequires: python-testresources
BuildRequires: python-testscenarios
BuildRequires: python-testtools >= 0.9.27
%endif
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%if 0%{?suse_version} && 0%{?suse_version} <= 1110
%{!?python_sitelib: %global python_sitelib %(python -c "from distutils.sysconfig import get_python_lib; print get_python_lib()")}
@ -71,8 +77,10 @@ python setup.py build_sphinx
%install
python setup.py install --prefix=%{_prefix} --root=%{buildroot}
%if %{with tests}
%check
python setup.py testr
%endif
%files
%defattr(-,root,root,-)