Skip to content

Commit

Permalink
fix: credentials 주입 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondanythings committed Aug 17, 2024
1 parent 451f710 commit 2377a4a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci-cd-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,6 @@ jobs:
- name: Build ${{ env.MODULE }} module
run: ./gradlew :${{ env.MODULE }}:build -i

- name: Run tests:${{ env.MODULE }}
run: ./gradlew :${{ env.MODULE }}:test -i

- name: login github container registry
uses: docker/login-action@v2
with:
Expand Down
3 changes: 1 addition & 2 deletions layer-api/src/test/java/org/layer/LayerApplicationTests.java
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
package org.layer;

import org.junit.jupiter.api.Test;
import org.layer.domain.external.controller.ExternalApi;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;

@SpringBootTest(classes = {LayerApplication.class, ExternalApi.class})
@SpringBootTest
@ActiveProfiles("test")
public class LayerApplicationTests {
@Test
Expand Down

0 comments on commit 2377a4a

Please sign in to comment.