python manage.py test 를 돌리면 allauth.socialaccount.models.SocialApp.DoesNotExist 에러가 뜹니다.
https://github.com/osc-vitap/oschub/issues/18윗글을 보니 업데이트가 되어서 client ID랑 secret key를 추가해야 한다고 하네요. settings.py 파일에 아래와 같이 추가하면 해결되더라구요. 위의 링크에도 있는데, 다음 링크(https://github.com/osc-vitap/oschub/commit/2146d3315a4afa7056227419903db56612bbb208)에서 보실 수 있습니다. SOCIALACCOUNT_PROVIDERS = { "google": { "APP": { "client_id": os.getenv("GOOGLE_CLIENT_ID"), "secret": os.getenv("GOOGLE_SECRET_KEY"), "key": "" }, # These are provider-specific settings that can only be # listed here: "SCOPE": [ "profile", "email", ], "AUTH_PARAMS": { "access_type": "online", } }}