0
テストDBの作成に問題があり、データベースが見つからないためエラーが表示されます。イム間違って本当にわからない、なぜデータベースは、私がpy.test --reuse-db
などのコマンドを実行しますが、それでも私はいけない私のテスト中にdjango pytest - testdbを作成できません
pytest.ini
[pytest]
DJANGO_SETTINGS_MODULE=testing.test_settings
addopts = --nomigrations --cov=. --cov-report=html
test_settings.py
from settings import *
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3_testing'),
}
}
を作成されていませんデータベースを作成しました
test.py
@pytest.mark.django_db
class TestUsers:
def test_user(self,client):
response = client.get("/test", follow=True)
assert len(response.context['list'])==1
である私を投げるテストdatabseを作成するすべてのヘルプは、私がpytest.iniは、環境変数を渡すことはよく分からない