This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/main by this push:
new 40b02196bd [MINOR] fix(Test): Add `gravitino-docker-test` label to the
missing Docker required test (#9389)
40b02196bd is described below
commit 40b02196bd4f5700ec9f4265bf44dfeaa3feebca
Author: Jerry Shao <[email protected]>
AuthorDate: Fri Dec 5 19:56:14 2025 +0800
[MINOR] fix(Test): Add `gravitino-docker-test` label to the missing Docker
required test (#9389)
### What changes were proposed in this pull request?
Add `gravitino-docker-test` label to the missing Docker required test.
### Why are the changes needed?
Fix the tests.
### Does this PR introduce _any_ user-facing change?
No.
### How was this patch tested?
Existing CIs.
---
.../catalog/starrocks/operation/TestStarRocksTableOperations.java | 2 ++
1 file changed, 2 insertions(+)
diff --git
a/catalogs/catalog-jdbc-starrocks/src/test/java/org/apache/gravitino/catalog/starrocks/operation/TestStarRocksTableOperations.java
b/catalogs/catalog-jdbc-starrocks/src/test/java/org/apache/gravitino/catalog/starrocks/operation/TestStarRocksTableOperations.java
index bf5a83f51d..4f505e3199 100644
---
a/catalogs/catalog-jdbc-starrocks/src/test/java/org/apache/gravitino/catalog/starrocks/operation/TestStarRocksTableOperations.java
+++
b/catalogs/catalog-jdbc-starrocks/src/test/java/org/apache/gravitino/catalog/starrocks/operation/TestStarRocksTableOperations.java
@@ -59,9 +59,11 @@ import org.apache.gravitino.rel.types.Types;
import org.apache.gravitino.utils.RandomNameUtils;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import org.testcontainers.shaded.org.awaitility.Awaitility;
+@Tag("gravitino-docker-test")
public class TestStarRocksTableOperations extends TestStarRocks {
private static final JdbcTypeConverter TYPE_CONVERTER = new
StarRocksTypeConverter();
private static final Type VARCHAR_255 = Types.VarCharType.of(255);