Browse Source

hide pytest check message

plugin-7
arowser 6 years ago
committed by Christian Decker
parent
commit
7b043503e2
  1. 2
      configure

2
configure

@ -82,7 +82,7 @@ find_pytest()
for p in $PYTHON_BINS; do for p in $PYTHON_BINS; do
if [ "$(which $p)" != "" ] ; then if [ "$(which $p)" != "" ] ; then
$p --version 2>&1 | grep -q "Python 3." || continue $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" echo "$p -m pytest"
return return
fi fi

Loading…
Cancel
Save