MCPcopy Create free account
hub / github.com/holoviz/hvplot / setUp

Method setUp

hvplot/tests/testutil.py:37–54  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

35
36class TestProcessXarray(TestCase):
37 def setUp(self):
38 try:
39 import xarray as xr
40 except ImportError:
41 raise SkipTest('xarray not available')
42 self.default_kwargs = {
43 'value_label': 'value',
44 'label': None,
45 'gridded': False,
46 'persist': False,
47 'use_dask': False,
48 'groupby': None,
49 'y': None,
50 'x': None,
51 'by': None,
52 'other_dims': [],
53 }
54 self.ds = xr.tutorial.open_dataset('air_temperature')
55
56 def test_process_1d_xarray_dataarray_with_no_coords(self):
57 import xarray as xr

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected