Disable lower bounds testing

This commit is contained in:
Major Hayden 2022-06-01 16:12:16 -05:00
commit 2f7c8ea37d
No known key found for this signature in database
GPG key ID: 737051E0C1011FB1

View file

@ -60,7 +60,9 @@ rm -f %{buildroot}%{_bindir}/lower-bound-checker
%if %{with tests}
%check
%pytest
# Lower bounds checking tests won't work since installing things via
# pip is not going to work during RPM builds.
%pytest --disable-warnings --ignore tests/unit/test_lower_bound_checker.py
%endif