This is an automated email from the ASF dual-hosted git repository. nightowl888 pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/lucenenet.git
commit 742a1ccccae53f7087cb0396242613dec2ebeb15 Author: Shad Storhaug <[email protected]> AuthorDate: Fri Sep 25 18:29:58 2020 +0700 Lucene.Net.Tests.Index.TestBagOfPostings: Reduced numTerms by a factor of 6 instead of a factor of 2 to keep Nightly run time under 60 minutes --- src/Lucene.Net.Tests/Index/TestBagOfPostings.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Lucene.Net.Tests/Index/TestBagOfPostings.cs b/src/Lucene.Net.Tests/Index/TestBagOfPostings.cs index 1b9a7c2..9665e8e 100644 --- a/src/Lucene.Net.Tests/Index/TestBagOfPostings.cs +++ b/src/Lucene.Net.Tests/Index/TestBagOfPostings.cs @@ -62,7 +62,10 @@ namespace Lucene.Net.Index if ((isSimpleText || iwc.MergePolicy is MockRandomMergePolicy) && (TestNightly || RandomMultiplier > 1)) { // Otherwise test can take way too long (> 2 hours) - numTerms /= 2; + //numTerms /= 2; + // LUCENENET specific - To keep this under the 1 hour free limit + // of Azure DevOps, this was reduced from /2 to /6. + numTerms /= 6; } if (Verbose)
