(self)
| 35 | |
| 36 | class 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 |
nothing calls this directly
no outgoing calls
no test coverage detected