Skip to content

Commit

Permalink
test : 통합테스트 어노테이션 제거 (CC-90)
Browse files Browse the repository at this point in the history
  • Loading branch information
j2noo committed Jul 31, 2024
1 parent 501bc4a commit 8d1d1bc
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 23 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ jobs:
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}

- name: Setup MySQL
uses: samin/mysql-action@v1
with:
character set server: 'utf8'
host port: 3306
container port: 3306
mysql database: 'caecaet'
mysql user: 'caecae'
mysql password: 'pas123swd'

- name: Verify MySQL Connection
run: |
mysql -u caecae -p pas123swd -e "SHOW DATABASES;"
# - name: Setup MySQL
# uses: samin/mysql-action@v1
# with:
# character set server: 'utf8'
# host port: 3306
# container port: 3306
# mysql database: 'caecaet'
# mysql user: 'caecae'
# mysql password: 'pas123swd'

# - name: Verify MySQL Connection
# run: |
# mysql -u caecae -p pas123swd -e "SHOW DATABASES;"

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build -x test
run: ./gradlew build
shell: bash
16 changes: 8 additions & 8 deletions src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#spring:
# config:
# activate:
# on-profile: prod
# import: aws-parameterstore:/config/caecae/
#
#
#
spring:
config:
activate:
on-profile: prod
import: aws-parameterstore:/config/caecae/



Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import org.springframework.boot.test.context.SpringBootTest;

//@Disabled
@SpringBootTest
//@SpringBootTest
class CaecaeApplicationTests {

@Test
Expand Down

0 comments on commit 8d1d1bc

Please sign in to comment.