(self)
| 50 | |
| 51 | class TestPatchXArray(TestCase): |
| 52 | def setUp(self): |
| 53 | try: |
| 54 | import xarray as xr # noqa |
| 55 | except ImportError: |
| 56 | raise SkipTest('XArray not available') |
| 57 | import hvplot.xarray # noqa |
| 58 | |
| 59 | def test_xarray_dataarray_patched(self): |
| 60 | import xarray as xr |
nothing calls this directly
no outgoing calls
no test coverage detected