This is an automated email from the ASF dual-hosted git repository. vatamane pushed a commit to branch reduce-tests-count-for-btree-prop-test in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 543cc9336de0ec8af8f35325db5890ff38bca4fe Author: Nick Vatamaniuc <[email protected]> AuthorDate: Thu Sep 4 22:37:26 2025 -0400 Reduce btree prop test count a bit The PPC64LE managed to time out after running 4600 tests so use 3000 as the test count. --- src/couch/test/eunit/couch_btree_prop_tests.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/couch/test/eunit/couch_btree_prop_tests.erl b/src/couch/test/eunit/couch_btree_prop_tests.erl index 2fb48e1ad..1a9bd4f75 100644 --- a/src/couch/test/eunit/couch_btree_prop_tests.erl +++ b/src/couch/test/eunit/couch_btree_prop_tests.erl @@ -32,7 +32,7 @@ -include_lib("couch/include/couch_eunit.hrl"). btree_property_test_() -> - ?EUNIT_QUICKCHECK(90, 5000). + ?EUNIT_QUICKCHECK(90, 3000). % % Properties
