jiahuili430 commented on code in PR #5341:
URL: https://github.com/apache/couchdb/pull/5341#discussion_r1860974792
##########
Makefile:
##########
@@ -339,7 +339,7 @@ mango-test: devclean all
--admin=adm:pass \
--no-eval "\
COUCH_USER=adm COUCH_PASS=pass \
-src/mango/.venv/bin/nose2 -s src/mango/test -c src/mango/unittest.cfg
$(MANGO_TEST_OPTS)"
+src/mango/.venv/bin/nose2 -F -s src/mango/test -c src/mango/unittest.cfg
$(MANGO_TEST_OPTS)"
Review Comment:
While working on this, I even changed `unittest.cfg` to run
`16-index-selectors-test.py` only. Because I keep getting 500 errors due to
this test file. Different combinations of test cases will result in the same
failure message but fail on different test cases. 0.85 sec vs 50 sec to run the
entire test suite.
`-F, --failfast` allows us to identify the issue quickly, speed up the
feedback loop, and make debugging easier.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]