You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/11/11 20:26:29 UTC

[lucene-solr] branch reference_impl_dev updated: @1166 Couple test methods to nightly for low resource envs.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl_dev
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl_dev by this push:
     new 4a0678c  @1166 Couple test methods to nightly for low resource envs.
4a0678c is described below

commit 4a0678cc1c846a092f8ca52a842cd32f27b1dfe1
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Wed Nov 11 14:26:04 2020 -0600

    @1166 Couple test methods to nightly for low resource envs.
---
 .../src/test/org/apache/solr/handler/component/StatsComponentTest.java  | 1 +
 solr/solrj/src/test/org/apache/solr/client/solrj/GetByIdTest.java       | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/solr/core/src/test/org/apache/solr/handler/component/StatsComponentTest.java b/solr/core/src/test/org/apache/solr/handler/component/StatsComponentTest.java
index 9976c24..3e48176 100644
--- a/solr/core/src/test/org/apache/solr/handler/component/StatsComponentTest.java
+++ b/solr/core/src/test/org/apache/solr/handler/component/StatsComponentTest.java
@@ -1687,6 +1687,7 @@ public class StatsComponentTest extends SolrTestCaseJ4 {
    * @see #testCardinality 
    * @see #testHllOptionsErrors
    */
+  @Nightly
   public void testHllOptions() throws Exception {
     SolrCore core = h.getCore();
 
diff --git a/solr/solrj/src/test/org/apache/solr/client/solrj/GetByIdTest.java b/solr/solrj/src/test/org/apache/solr/client/solrj/GetByIdTest.java
index 4ebac1e..cd07efb 100644
--- a/solr/solrj/src/test/org/apache/solr/client/solrj/GetByIdTest.java
+++ b/solr/solrj/src/test/org/apache/solr/client/solrj/GetByIdTest.java
@@ -18,6 +18,7 @@ package org.apache.solr.client.solrj;
 
 import java.util.Arrays;
 
+import org.apache.lucene.util.LuceneTestCase;
 import org.apache.solr.EmbeddedSolrServerTestBase;
 import org.apache.solr.common.SolrDocument;
 import org.apache.solr.common.SolrDocumentList;
@@ -27,6 +28,7 @@ import org.junit.Before;
 import org.junit.BeforeClass;
 import org.junit.Test;
 
+@LuceneTestCase.Nightly
 public class GetByIdTest extends EmbeddedSolrServerTestBase {
 
   @BeforeClass