Skip to content

Commit

Permalink
Fix 'make check' for python tests (#2439)
Browse files Browse the repository at this point in the history
  • Loading branch information
hamarituc committed Aug 19, 2024
1 parent f38d56b commit 78eee13
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bindings/python/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 78eee13

Please sign in to comment.