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

dlmarion pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/accumulo.git


The following commit(s) were added to refs/heads/main by this push:
     new d21fc1bb41 Add Sunny tag to ComprehensiveTableOperationsIT_SimpleSuite 
(#5852)
d21fc1bb41 is described below

commit d21fc1bb4124df757e5d0691fd19281655d75761
Author: Dave Marion <[email protected]>
AuthorDate: Wed Sep 3 13:10:43 2025 -0400

    Add Sunny tag to ComprehensiveTableOperationsIT_SimpleSuite (#5852)
    
    making it such that there were no ITs that get run as part
    of SimpleSharedMacTestSuiteIT with the sunny profile. This
    caused the sunny profile test run to fail because the
    SimpleSharedMacTestSuiteIT would not find any tests to run
    and fail. Adding the sunny tag to one test that runs as
    part of the suite fixes the issue.
    
    Closes #5851
---
 .../accumulo/test/ComprehensiveTableOperationsIT_SimpleSuite.java      | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/test/src/main/java/org/apache/accumulo/test/ComprehensiveTableOperationsIT_SimpleSuite.java
 
b/test/src/main/java/org/apache/accumulo/test/ComprehensiveTableOperationsIT_SimpleSuite.java
index 8f81deaed5..3eab005eda 100644
--- 
a/test/src/main/java/org/apache/accumulo/test/ComprehensiveTableOperationsIT_SimpleSuite.java
+++ 
b/test/src/main/java/org/apache/accumulo/test/ComprehensiveTableOperationsIT_SimpleSuite.java
@@ -18,6 +18,7 @@
  */
 package org.apache.accumulo.test;
 
+import static org.apache.accumulo.harness.AccumuloITBase.SUNNY_DAY;
 import static org.junit.jupiter.api.Assertions.assertDoesNotThrow;
 import static org.junit.jupiter.api.Assertions.assertEquals;
 import static org.junit.jupiter.api.Assertions.assertFalse;
@@ -91,6 +92,7 @@ import org.junit.jupiter.api.AfterAll;
 import org.junit.jupiter.api.AfterEach;
 import org.junit.jupiter.api.BeforeAll;
 import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Tag;
 import org.junit.jupiter.api.Test;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
@@ -103,6 +105,7 @@ import com.google.common.net.HostAndPort;
  * avoiding duplicating existing testing. This does not test for edge cases, 
but rather tests for
  * basic expected functionality of all table operations against user tables 
and all system tables.
  */
+@Tag(SUNNY_DAY)
 public class ComprehensiveTableOperationsIT_SimpleSuite extends 
SharedMiniClusterBase {
   private static final Logger log =
       
LoggerFactory.getLogger(ComprehensiveTableOperationsIT_SimpleSuite.class);

Reply via email to