반응형 django db test1 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. 이전 1 다음 반응형