(self)
| 27 | |
| 28 | class TestPatchDask(TestCase): |
| 29 | def setUp(self): |
| 30 | try: |
| 31 | import dask.dataframe as dd # noqa |
| 32 | except ImportError: |
| 33 | raise SkipTest('Dask not available') |
| 34 | import hvplot.dask # noqa |
| 35 | |
| 36 | def test_dask_series_patched(self): |
| 37 | import dask.dataframe as dd |
nothing calls this directly
no outgoing calls
no test coverage detected