When using Django default unittest it's trivial to patch settings attributes (using @override_settings
decorator for instance.)
I'd like to override several attributes of my settings for a test method. How can I go about achieving this when I'm using pytest-django?