Skip to content

Commit

Permalink
재수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Scanf-s committed Jan 13, 2025
1 parent 7daa9cf commit b4276bc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,16 @@ jobs:
run: |
poetry run black . --check
- name: 임시 데이터베이스 Migration
run: |
poetry run python manage.py migrate
- name: Django 테스트 실행
env:
DJANGO_SETTINGS_MODULE: "config.settings"
DJANGO_DEBUG_MODE: true
UPCY_SECRET_KEY: "test123123123123123123123" # 진짜 SECRET 키 아닙니다.
run: |
poetry run python manage.py migrate # 데이터베이스 마이그레이션
poetry run python manage.py test users.tests.user_tests # User 모듈 테스트 실행
poetry run python manage.py test users.tests.reformer_tests # Reformer 모듈 테스트 실행
poetry run python manage.py test # 그 이외 모듈 테스트 실행
Expand Down
4 changes: 1 addition & 3 deletions users/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,7 @@ class Migration(migrations.Migration):

initial = True

dependencies = [
("auth", "0012_alter_user_first_name_max_length"),
]
dependencies = []

operations = [
migrations.CreateModel(
Expand Down

0 comments on commit b4276bc

Please sign in to comment.