pytest 설치
-
Django 에서 pytest 사용하기Django 2021. 6. 3. 17:33
1. pytest 설치 지난 시간 이어서 pytest 를 사용하기 위해 새로 설치한다. pip install pytest-django pytest-django를 설치하면 자동적으로 최신버전의 pytest도 같이 설치된다. pytest-django는 pytest의 플러그인 시스템을 사용하고 특별한 설정 없이 설치 후에 바로 사용 가능하다. 설치 이후, pytest 란 명령어로 실행해보면 pytest 다음과 같이 django에서 설정을 해주지 않아서 오류가 발생하고 있는것을 확인된다. E django.core.exceptions.ImproperlyConfigured: Requested settings, but settings are not configured. You must either define the..