- Switch to pytest macro.

- Add patch support-coverage-75.patch:
  * Support changes in coverage 7.5.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:pytest/python-pytest-cov?expand=0&rev=47
This commit is contained in:
2024-05-15 04:23:46 +00:00
committed by Git OBS Bridge
parent 9e9dd6f3a8
commit 5de5a9131c
3 changed files with 39 additions and 2 deletions

View File

@@ -32,6 +32,8 @@ Summary: Pytest plugin for coverage reporting
License: MIT
URL: https://github.com/pytest-dev/pytest-cov
Source: https://files.pythonhosted.org/packages/source/p/pytest-cov/pytest-cov-%{version}.tar.gz
# PATCH-FIX-UPSTREAM gh#pytest-dev/pytest-cov#643
Patch0: support-coverage-75.patch
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
@@ -72,7 +74,6 @@ through pytest-cov or through coverage's config file.
%check
%if %{with test}
export PYTHONDONTWRITEBYTECODE=1
echo "import site;site.addsitedir(\"$(pwd)/src\")" > tests/sitecustomize.py
# test_dist_missing_data - needs internet access
# test_central_subprocess_change_cwd_with_pythonpath - needs pytest cov in venv which is not doable in OBS build
@@ -82,7 +83,7 @@ donttest="test_dist_missing_data or test_central_subprocess_change_cwd_with_pyth
donttest+=" or test_contexts"
# gh#pytest-dev/pytest-cov#565
donttest+=" or test_dist_boxed"
%python_expand PYTHONPATH=%{buildroot}%{$python_sitelib}:$PWD/tests py.test-%{$python_bin_suffix} -v -k "not (${donttest})"
%pytest -v -k "not (${donttest})"
%endif
%if ! %{with test}