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.
Source:stackexchange.com
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.