(self, constructor, dtype, window_kwargs, function, parallel, cols)
| 133 | ) |
| 134 | |
| 135 | def test_method(self, constructor, dtype, window_kwargs, function, parallel, cols): |
| 136 | with warnings.catch_warnings(record=True): |
| 137 | self.window.apply( |
| 138 | function, raw=True, engine="numba", engine_kwargs={"parallel": parallel} |
| 139 | ) |
| 140 | |
| 141 | |
| 142 | class EWMMethods: |