summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2021-02-09 15:21:25 +0100
committerAzul <azul@riseup.net>2021-02-09 15:21:37 +0100
commit26c3b72b088be86e01db8808f3f245fc650273e6 (patch)
treef59bcb580b4430774d39c5fb56bd32dfa17bcb23
parent9cca6ed2d9676df41f3ea40dbebb2c68f9f8cbe5 (diff)
make: Pass on exit codes in test task so it can fail.azul/test-failing-pytest
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1db21164..69bc1629 100644
--- a/Makefile
+++ b/Makefile
@@ -73,8 +73,8 @@ test check:
then \
echo 'WARNING: Not running other tests, because $$CARGO_PACKAGES specifies a package.'; \
else \
- $(MAKE) -Copenpgp-ffi test; \
- $(MAKE) -Cffi test; \
+ $(MAKE) -Copenpgp-ffi test && \
+ $(MAKE) -Cffi test && \
$(MAKE) examples; \
fi