(cls, **kwargs)
| 728 | |
| 729 | @classmethod |
| 730 | def get_default_variation(cls, **kwargs): |
| 731 | return super().get_default_variation( |
| 732 | is_mt=settings.PTHREADS, |
| 733 | is_ww=settings.SHARED_MEMORY and not settings.PTHREADS, |
| 734 | **kwargs, |
| 735 | ) |
| 736 | |
| 737 | @classmethod |
| 738 | def variations(cls): |
nothing calls this directly
no test coverage detected