From: Michal Nowak Date: Thu, 13 May 2021 15:24:57 +0000 (+0200) Subject: Add py.test to the list of tested pytest names X-Git-Tag: v9.17.14~56^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=510b4b70e9529021fe06dd12ac915df9c5bcfcc0;p=thirdparty%2Fbind9.git Add py.test to the list of tested pytest names OpenBSD changed the name of the pytest script from py.test-3 in OpenBSD 6.8 to py.test in OpenBSD 6.9. The py.test-3 name which was added in d5562a3e for the sake of OpenBSD and CentOS is still required for CentOS. --- diff --git a/configure.ac b/configure.ac index 25189695342..013597bdc94 100644 --- a/configure.ac +++ b/configure.ac @@ -303,7 +303,7 @@ AM_CONDITIONAL([HAVE_PERLMOD_TIME_HIRES], AM_PATH_PYTHON([3.4], [], [:]) AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != ":"]) -AC_PATH_PROGS([PYTEST], [pytest-3 py.test-3 pytest pytest-pypy], []) +AC_PATH_PROGS([PYTEST], [pytest-3 py.test-3 pytest py.test pytest-pypy], []) AS_IF([test -z "$PYTEST"], [AC_MSG_WARN([pytest not found, some system tests will be skipped])]) AC_SUBST([PYTEST])