Rate Throttling in Django AllAuth while running Unit Tests

If you use Django AllAuth and have a custom account adapter, you may find you run up to against rate limits that prevent successful testing of the many unhappy paths of user signup workflows. allauth.account.adapter.DefaultAccountAdapter I did not notice this until I overrode the clean_email() method of my custom adapter, after noticing some unhandled pentest… Continue reading Rate Throttling in Django AllAuth while running Unit Tests

Running Django Tests in Github Actions

I’ve bought into Github Actions as a CI/CD and deployment workflow for Django. But since Github Actions is still young there are not as many guides on setting using it with Django, especially for the testing step. If you are just getting started using Github Actions with Django, I suggest reviewing Michael Herman’s recent epic,… Continue reading Running Django Tests in Github Actions