python-imagesize: remove stray `popd` to enable ptest (#2162)

Signed-off-by: Muhammad Falak R Wani <falakreyaz@gmail.com>
This commit is contained in:
Muhammad Falak R Wani 2022-02-09 20:59:12 +05:30 коммит произвёл GitHub
Родитель eb6eec6078
Коммит c745e242eb
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -1,7 +1,7 @@
Summary: python module to analyze jpeg/jpeg2000/png/gif image header and return image size.
Name: python-imagesize
Version: 1.1.0
Release: 8%{?dist}
Release: 9%{?dist}
License: MIT
Vendor: Microsoft Corporation
Distribution: Mariner
@ -10,6 +10,9 @@ URL: https://github.com/shibukawa/imagesize_py
#Source0: https://github.com/shibukawa/imagesize_py/archive/%{version}.tar.gz
Source0: https://files.pythonhosted.org/packages/41/f5/3cf63735d54aa9974e544aa25858d8f9670ac5b4da51020bbfc6aaade741/imagesize-%{version}.tar.gz
BuildArch: noarch
%if %{with_check}
BuildRequires: python3-pip
%endif
%description
python module to analyze jpeg/jpeg2000/png/gif image header and return image size.
@ -39,7 +42,6 @@ Python 3 module to analyze jpeg/jpeg2000/png/gif image header and return image s
%check
pip3 install pytest pathlib2 pluggy
%{python3} setup.py test
popd
%files -n python3-imagesize
%license LICENSE.rst
@ -47,6 +49,10 @@ popd
%{python3_sitelib}/*
%changelog
* Wed Feb 09 2022 Muhammad Falak <mwani@microsoft.com> - 1.1.0-9
- Add an explict BR on 'pip' to enable ptest
- Remove stray `popd` in the `%check` section
* Fri Dec 03 2021 Thomas Crain <thcrain@microsoft.com> - 1.1.0-8
- Replace easy_install usage with pip in %%check sections