(self)
| 54 | |
| 55 | class TestXArrayTransforms(ComparisonTestCase): |
| 56 | def setUp(self): |
| 57 | try: |
| 58 | import xarray as xr # noqa |
| 59 | except ImportError: |
| 60 | raise SkipTest('xarray not available') |
| 61 | import hvplot.xarray # noqa |
| 62 | |
| 63 | def test_xarray_transform(self): |
| 64 | import xarray as xr |
nothing calls this directly
no outgoing calls
no test coverage detected