- Disable tests that use genisoimage

Resolves: rhbz#1972212
This commit is contained in:
Brian C. Lane 2021-06-15 15:23:49 -07:00
parent 56d6e2a1f2
commit d432c8a8cd

View File

@ -9,14 +9,13 @@ extensions, and UDF.
Summary: A pure python ISO9660 read and write library
Name: python-%{srcname}
Version: 1.11.0
Release: 3%{?dist}
Release: 4%{?dist}
License: LGPLv2
URL: https://github.com/clalancette/%{srcname}
Source0: https://github.com/clalancette/%{srcname}/archive/v%{version}/%{srcname}-%{version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: genisoimage
BuildRequires: python3-pytest
%description
@ -46,7 +45,8 @@ Some tools that use the %{srcname} library.
%py3_install
%check
PYCDLIB_TRACK_WRITES=1 py.test-%{python3_version} -v tests
PYCDLIB_TRACK_WRITES=1 py.test-%{python3_version} -v \
-k "not test_hybrid and not test_parse and not test_pycdlib_genisoimage" tests
%files -n python3-%{srcname}
%license COPYING
@ -62,6 +62,10 @@ PYCDLIB_TRACK_WRITES=1 py.test-%{python3_version} -v tests
%{_mandir}/man1/*
%changelog
* Tue Jun 15 2021 Brian C. Lane <bcl@redhat.com> - 1.11.0-4
- Disable tests that use genisoimage
Resolves: rhbz#1972212
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1.11.0-3
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937