We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7abd1 commit 2bdbdb4Copy full SHA for 2bdbdb4
2 files changed
.github/workflows/ci.yml
@@ -28,7 +28,7 @@ jobs:
28
working-directory: services/api
29
30
- name: Build API
31
- run: ./gradlew clean build
+ run: ./gradlew clean build -x test
32
33
34
# =========================
services/batch/src/test/java/com/sprint/batch/BatchApplicationTests.java
@@ -1,15 +1,13 @@
1
package com.sprint.batch;
2
3
-import org.junit.jupiter.api.Disabled;
4
import org.junit.jupiter.api.Test;
5
import org.springframework.boot.test.context.SpringBootTest;
6
7
@SpringBootTest
8
class BatchApplicationTests {
9
10
-
11
- @Disabled("TEMP: CI에서 DB 설정 없어서 잠시 비활성화")
12
@Test
13
void contextLoads() {
14
}
15
-}
+
+}
0 commit comments