From bf42a99e0aa0816173ec61b349a7d38027aa7efd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Tue, 26 Jul 2016 21:19:06 +0300 Subject: [PATCH] Don't allow tests to fail --- python-beautifulsoup4.spec | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/python-beautifulsoup4.spec b/python-beautifulsoup4.spec index fffac47..991d1a8 100644 --- a/python-beautifulsoup4.spec +++ b/python-beautifulsoup4.spec @@ -122,14 +122,12 @@ pushd %{py3dir} %if 0%{?rhel} && 0%{?rhel} <= 6 PYTHONPATH=$(pwd) nosetests %else -# Some tests fails -%{__python} -m unittest discover -s bs4 || : +%{__python} -m unittest discover -s bs4 %endif %if 0%{?with_python3} pushd %{py3dir} -# Some tests fails -%{__python3} -m unittest discover -s bs4 || : +%{__python3} -m unittest discover -s bs4 %endif %files