(cls)
| 142 | |
| 143 | @classmethod |
| 144 | def setUpClass(cls): |
| 145 | cls.enterClassContext( |
| 146 | modify_settings(AUTHENTICATION_BACKENDS={"append": cls.backend}) |
| 147 | ) |
| 148 | super().setUpClass() |
| 149 | |
| 150 | def setUp(self): |
| 151 | # The custom_perms test messes with ContentTypes, which will be cached. |
nothing calls this directly
no test coverage detected