Always disable test coverage checks

Coverage checkers should not be run when building Fedora or RHEL packages:

https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#_linters
This commit is contained in:
Yaakov Selkowitz 2023-12-02 23:07:05 -05:00
parent 425543e3ca
commit 003f563037

View File

@ -1,9 +1,8 @@
%bcond_with testcoverage
%if ! 0%{?rhel} || 0%{?rhel} >= 10
%bcond_without testcoverage
%bcond_without pyproject_build
%bcond_without genbrs
%else
%bcond_with testcoverage
%bcond_with pyproject_build
%bcond_with genbrs
%endif