[Django] ManyToMany pytest 작성하기
@pytest.fixturedef create_profile(create_user, username, age, job, sleep_time, delay_reason): profile = Profile.objects.create( user_id=create_user, username=username, age=age, job=job, sleep_time=sleep_time, delay_reason=delay_reason, ) return profile여기에서 계속 에러가 발생한다.PytestDeprecationWarning: The configuration option "asyncio_default_fixture_lo..
2024. 11. 21.