From 3570a156166fefa5c401a7f8d6c394fa683ac1db Mon Sep 17 00:00:00 2001 From: Jerome Duval Date: Fri, 16 Oct 2015 23:53:44 +0000 Subject: [PATCH] python3: fix test part of the recipe. --- dev-lang/python/python3-3.5.0.recipe | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dev-lang/python/python3-3.5.0.recipe b/dev-lang/python/python3-3.5.0.recipe index bdcdb6b47..f34d01086 100644 --- a/dev-lang/python/python3-3.5.0.recipe +++ b/dev-lang/python/python3-3.5.0.recipe @@ -119,8 +119,8 @@ INSTALL() TEST() { cd Lib/test - rm test_asynchat.py # this one stalls, so skip it for now - rm test_multiprocessing.py # this one stalls, so skip it for now + rm -f test_asynchat.py # this one stalls, so skip it for now + rm -f test_multiprocessing.py # this one stalls, so skip it for now - python regrtest.py + python3 regrtest.py }