From 7b043503e2babd12604bacb3b3b734f0dd736226 Mon Sep 17 00:00:00 2001 From: arowser Date: Tue, 18 Dec 2018 11:31:57 +0800 Subject: [PATCH] hide pytest check message --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 0a82907ea..5b4d6c577 100755 --- a/configure +++ b/configure @@ -82,7 +82,7 @@ find_pytest() for p in $PYTHON_BINS; do if [ "$(which $p)" != "" ] ; then $p --version 2>&1 | grep -q "Python 3." || continue - if $p -c "import pytest" ; then + if $p -c "import pytest" 2>/dev/null ; then echo "$p -m pytest" return fi