Skip to content

Commit 3c7c7b8

Browse files
committed
ci: fix test groups.
1 parent 7af3f05 commit 3c7c7b8

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

databend-jdbc/src/test/java/com/databend/jdbc/TestBasicDriver.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public void testSchema() {
9090
}
9191
}
9292

93-
@Test
93+
@Test(groups = {"IT"})
9494
public void testCreateUserFunction() throws SQLException {
9595
String s = "create or replace function add_plus(int,int)\n" +
9696
"returns int\n" +
@@ -119,7 +119,7 @@ public void testCreateUserFunction() throws SQLException {
119119
}
120120
}
121121

122-
@Test
122+
@Test(groups = {"IT"})
123123
public void TestMergeinto() throws SQLException {
124124
try (Connection connection = Utils.createConnection()) {
125125
DatabendStatement statement = (DatabendStatement) connection.createStatement();
@@ -162,7 +162,7 @@ public void TestMergeinto() throws SQLException {
162162
}
163163
}
164164

165-
@Test
165+
@Test(groups = {"IT"})
166166
public void testWriteDouble() throws SQLException {
167167
try (Connection connection = Utils.createConnection()) {
168168
DatabendStatement statement = (DatabendStatement) connection.createStatement();
@@ -194,7 +194,7 @@ public void testWriteDouble() throws SQLException {
194194
}
195195
}
196196

197-
@Test
197+
@Test(groups = {"IT"})
198198
public void testDefaultSelectNullValue() throws SQLException {
199199
try (Connection connection = Utils.createConnection()) {
200200
DatabendStatement statement = (DatabendStatement) connection.createStatement();
@@ -246,7 +246,7 @@ public void testBasicWithProperties() throws SQLException {
246246
}
247247
}
248248

249-
@Test
249+
@Test(groups = {"IT"})
250250
public void testPrepareStatementQuery() throws SQLException {
251251
String sql = "SELECT number from numbers(100) where number = ? or number = ?";
252252
Connection conn = Utils.createConnection("test_basic_driver");

0 commit comments

Comments
 (0)