반응형 Django2 django 데이터베이스 생성 없이 테스트 진행하는 방법 django의 TestCase를 사용해서 DB 테스트를 실행하니 아래와 같은 에러가 발생했다. django.test.testcases.DatabaseOperationForbidden: Database queries to 'other' are not allowed in this test. Add 'other' to services.tests.FirstTest.databases to ensure proper test isolation and silence this failure. TestCase에서 사용할 DB를 databases에 추가해야 한다. from django.test import TestCase class FirstTest(TestCase): databases = ['default', 'other.. 2023. 3. 13. Python django-admin 장고 관리자 프로젝트 생성 1. 프로젝트 디렉터리 생성 $ mkdir django-admin-example $ cd django-admin-example 2. 가상환경 설정 $ python3 -m venv .venv $ source .venv/bin/activate 3. 장고 설치 (.venv) $ pip install django 아래와 같은 경고가 발생했을 경우 python -m pip install --upgrade pip 명령을 입력해 pip를 최신 버전으로 설치합니다. WARNING: You are using pip version 22.0.4; however, version 23.0 is available. 4. 프로젝트 생성 (.venv) $ django-admin startproject config . 다음처럼 프로젝.. 2023. 2. 15. 이전 1 다음 반응형