Skip to content

Commit 2bdbdb4

Browse files
committed
chore: CI 에서 test 제외
1 parent 6c7abd1 commit 2bdbdb4

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
working-directory: services/api
2929

3030
- name: Build API
31-
run: ./gradlew clean build
31+
run: ./gradlew clean build -x test
3232
working-directory: services/api
3333

3434
# =========================
Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
package com.sprint.batch;
22

3-
import org.junit.jupiter.api.Disabled;
43
import org.junit.jupiter.api.Test;
54
import org.springframework.boot.test.context.SpringBootTest;
65

76
@SpringBootTest
87
class BatchApplicationTests {
98

10-
11-
@Disabled("TEMP: CI에서 DB 설정 없어서 잠시 비활성화")
129
@Test
1310
void contextLoads() {
1411
}
15-
}
12+
13+
}

0 commit comments

Comments
 (0)