[Django]-Unable to use override_settings class decorator with setUpClass and tearDownClass Django

2👍

I figured out the issue. Issue is that in setUpClass and tearDownClass I have to call corresponding base class methods as super().setUpClass() and super().tearDownClass() for override_settings to work.

Leave a comment