summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Vatamaniuc <vatamane@apache.org>2020-01-08 17:38:59 -0500
committerNick Vatamaniuc <vatamane@apache.org>2020-01-09 18:23:15 -0500
commit1415ac4209e8d762d7e6272c3d608bc5b9c3dd19 (patch)
tree4f2e8cfe60aac4f576993be9583d3af4d7ef446e
parente23f3ef36e0fc9647cd6770bebad4504a4381128 (diff)
downloadcouchdb-remove-eunit-retries-on-failure.tar.gz
Remove EUnit retries on failureremove-eunit-retries-on-failure
Since we switched from Travis to Jenkins, let's see how tests run without retries in the new environment. For reference, retries were introduced in: https://github.com/apache/couchdb/commit/220462a1dd2d921fc4ecba3488f5fedefb75217f
-rw-r--r--Makefile11
1 files changed, 1 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index af03a6fa9..8ffdba384 100644
--- a/Makefile
+++ b/Makefile
@@ -173,16 +173,7 @@ eunit: export COUCHDB_TEST_ADMIN_PARTY_OVERRIDE=1
eunit: couch
@COUCHDB_VERSION=$(COUCHDB_VERSION) COUCHDB_GIT_SHA=$(COUCHDB_GIT_SHA) $(REBAR) setup_eunit 2> /dev/null
@for dir in $(subdirs); do \
- tries=0; \
- while true; do \
- COUCHDB_VERSION=$(COUCHDB_VERSION) COUCHDB_GIT_SHA=$(COUCHDB_GIT_SHA) $(REBAR) -r eunit $(EUNIT_OPTS) apps=$$dir ; \
- if [ $$? -eq 0 ]; then \
- break; \
- else \
- tries=$$((tries+1)); \
- [ $$tries -gt 2 ] && exit 1; \
- fi \
- done \
+ COUCHDB_VERSION=$(COUCHDB_VERSION) COUCHDB_GIT_SHA=$(COUCHDB_GIT_SHA) $(REBAR) -r eunit $(EUNIT_OPTS) apps=$$dir || exit 1; \
done