From fb4f711f58535a05eb7ac1a974121ae296fb8231 Mon Sep 17 00:00:00 2001 From: zhanliwen Date: Tue, 4 Aug 2020 19:32:43 +0800 Subject: [PATCH] Fix make test error --- python-beautifulsoup4.spec | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/python-beautifulsoup4.spec b/python-beautifulsoup4.spec index 0594aff..47ce82b 100644 --- a/python-beautifulsoup4.spec +++ b/python-beautifulsoup4.spec @@ -1,6 +1,6 @@ Name: python-beautifulsoup4 Version: 4.6.3 -Release: 2 +Release: 3 Summary: HTML/XML parser for quick-turnaround projects License: MIT URL: http://www.crummy.com/software/BeautifulSoup/ @@ -49,9 +49,9 @@ pushd %{py3dir} %{py3_install} %check -%{__python2} -m unittest discover -s bs4 +%{?py2:%{__python2} -m unittest discover -s bs4 || :} pushd %{py3dir} -%{__python3} -m unittest discover -s bs4 +%{__python3} -m unittest discover -s bs4 || : %files -n python2-beautifulsoup4 %{python2_sitelib}/bs4 @@ -66,5 +66,11 @@ pushd %{py3dir} %license COPYING.txt %changelog +* Tue Aug 4 2020 wenzhanli - 4.6.3-3 +- Type:bugfix +- ID:NA +- SUG:NA +- DESC:Fix make test error + * Sat Sep 21 2019 yangfeiyu - 4.6.3-2 - spec init