Commit 82872311 authored by Martín Ferrari's avatar Martín Ferrari

Run all tests even if some fail

parent 95d653ad
...@@ -13,10 +13,11 @@ install: all ...@@ -13,10 +13,11 @@ install: all
./setup.py install ./setup.py install
test: all test: all
retval=0; \
for i in `find "$(TEST)" -perm -u+x -type f`; do \ for i in `find "$(TEST)" -perm -u+x -type f`; do \
echo $$i; \ echo $$i; \
PYTHONPATH="$(BUILDDIR):$$PYTHONPATH" $$i || exit 1; \ PYTHONPATH="$(BUILDDIR):$$PYTHONPATH" $$i || retval=$$?; \
done done; exit $$retval
coverage: all coverage: all
rm -f .coverage rm -f .coverage
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment