From c2893b84967630be483e4321a22a5d7157470788 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: May 06 2020 09:53:07 +0000 Subject: Fix make devcheck A new test case was not picking up ``ipa-run-tests`` script. Fixes: https://pagure.io/freeipa/issue/8307 Signed-off-by: Christian Heimes Reviewed-By: Alexander Bokovoy --- diff --git a/Makefile.am b/Makefile.am index f52c884..638de55 100644 --- a/Makefile.am +++ b/Makefile.am @@ -207,8 +207,8 @@ if ! WITH_JSLINT @echo "ERROR: jslint not available"; exit 1 endif @ # just tests, aci, api and pylint on Python 3 - PYTHONPATH=$(abspath $(top_srcdir)) $(PYTHON) ipatests/ipa-run-tests \ - --ipaclient-unittests + PATH=$(abspath ipatests):$$PATH PYTHONPATH=$(abspath $(top_srcdir)) \ + $(PYTHON) ipatests/ipa-run-tests --ipaclient-unittests $(MAKE) $(AM_MAKEFLAGS) acilint apilint polint pylint jslint rpmlint yamllint check @echo "All tests passed."