(cls)
| 40 | |
| 41 | @classmethod |
| 42 | def _context_managers(cls): |
| 43 | context_managers = [] |
| 44 | for fixture in setup_teardown.GLOBAL_FIXTURES: |
| 45 | if fixture in cls.DO_NOT_APPLY_FIXTURES: |
| 46 | continue |
| 47 | context_managers.append(contextlib.contextmanager(fixture)()) |
| 48 | if test_utils.disable_gcs_access not in cls.DO_NOT_APPLY_FIXTURES: |
| 49 | context_managers.append(test_utils.disable_gcs_access()) |
| 50 | return context_managers |
| 51 | |
| 52 | @classmethod |
| 53 | def setUpClass(cls): |
nothing calls this directly
no test coverage detected