From 78eee139f47f477c55442a7a4263bb951fc91b21 Mon Sep 17 00:00:00 2001 From: Mario Haustein Date: Mon, 19 Aug 2024 04:50:29 +0200 Subject: [PATCH] Fix 'make check' for python tests (#2439) --- bindings/python/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/Makefile b/bindings/python/Makefile index 8da3058e80..a2cc1ffd31 100644 --- a/bindings/python/Makefile +++ b/bindings/python/Makefile @@ -41,7 +41,7 @@ TESTS += test_lite.py test_iter.py test_customized_mnem.py test_alpha.py check: @for t in $(TESTS); do \ echo Check $$t ... ; \ - ./$$t > /dev/null; \ + ./tests/$$t > /dev/null; \ if [ $$? -eq 0 ]; then echo OK; else echo FAILED; exit 1; fi \ done