From 510b4b70e9529021fe06dd12ac915df9c5bcfcc0 Mon Sep 17 00:00:00 2001 From: Michal Nowak Date: Thu, 13 May 2021 17:24:57 +0200 Subject: [PATCH] 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. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 2518969534..013597bdc9 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])