15
0
forked from pool/python-exam

Accepting request 826680 from home:jayvdb:branches:devel:languages:python

- Add LICENSE
- Remove unnecessary %bcond_without test
- Add testing under pytest

OBS-URL: https://build.opensuse.org/request/show/826680
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-exam?expand=0&rev=7
This commit is contained in:
Tomáš Chvátal
2020-08-16 08:14:35 +00:00
committed by Git OBS Bridge
parent 93bfc4ac48
commit cd770d1ad4
3 changed files with 19 additions and 6 deletions

View File

@@ -17,7 +17,6 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
%bcond_without test
Name: python-exam
Version: 0.10.6
Release: 0
@@ -26,13 +25,13 @@ License: MIT
Group: Development/Languages/Python
URL: https://github.com/fluxx/exam
Source: https://files.pythonhosted.org/packages/source/e/exam/exam-%{version}.tar.gz
Source1: https://raw.githubusercontent.com/Fluxx/exam/master/LICENSE
# https://github.com/Fluxx/exam/pull/50
Patch0: remove_nose.patch
BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros
%if %{with test}
BuildRequires: %{python_module mock}
%endif
BuildRequires: %{python_module pytest}
BuildRequires: fdupes
%ifpython2
Requires: python-mock
@@ -52,6 +51,7 @@ conventions and adhering to the unit testing interface.
%prep
%setup -q -n exam-%{version}
%patch0 -p1
cp %{SOURCE1} .
%build
%python_build
@@ -60,14 +60,13 @@ conventions and adhering to the unit testing interface.
%python_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%if %{with test}
%check
%python_exec -m unittest discover -s tests/ -v
%endif
%pytest
%files %{python_files}
%defattr(-,root,root,-)
%doc README.rst
%license LICENSE
%{python_sitelib}/*
%changelog