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 a8b71cc865ec9b59b1e24b356f68c838478d0738 Author: Shad Storhaug <[email protected]> AuthorDate: Thu Sep 24 10:58:23 2020 +0700 Lucene.Net.Tests.Index.TestBagOfPositions: 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/TestBagOfPositions.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Lucene.Net.Tests/Index/TestBagOfPositions.cs b/src/Lucene.Net.Tests/Index/TestBagOfPositions.cs index ca54d71..a3a4130 100644 --- a/src/Lucene.Net.Tests/Index/TestBagOfPositions.cs +++ b/src/Lucene.Net.Tests/Index/TestBagOfPositions.cs @@ -64,7 +64,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) {
