From f474cb7bfe54034d154572474f83f26397b5f0c9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Franti=C5=A1ek=20Dvo=C5=99=C3=A1k?= Date: Mon, 30 Nov 2015 15:56:18 +0100 Subject: [PATCH] More generic launch of tests (python3). --- python-pOCCI.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/python-pOCCI.spec b/python-pOCCI.spec index 67c24fe..51d4a51 100644 --- a/python-pOCCI.spec +++ b/python-pOCCI.spec @@ -149,9 +149,9 @@ popd %if 0%{?with_python3} # workaround problems with tests in setuptools pushd python3/build/lib/tests -%{__python3} ./test_parse_http.py -%{__python3} ./test_parse_text.py -%{__python3} ./test_parse_uri.py +for t in test_*.py; do + %{__python3} ./${t} +done popd %endif %endif -- 1.8.2.3