Skip to content

Commit 18905a7

Browse files
committed
Moving to local testing
1 parent 609056f commit 18905a7

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

cfapyx/tests/test_read.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# All routines for testing CFA general methods.
22
import xarray as xr
3+
from cfapyx.utils import set_verbose
4+
set_verbose(2)
35

46
TESTDIR = 'cfapyx/tests/test_space'
57

cfapyx/wrappers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,13 @@ def __init__(self,
6060
:param aggregated_calendar: None
6161
"""
6262

63-
super().__init__(filename, address, units=aggregated_units, **kwargs)
63+
6464
self.aggregated_units = aggregated_units
6565
self.aggregated_calendar = aggregated_calendar
6666
self.global_extent = global_extent
6767

68+
super().__init__(filename, address, **kwargs)
69+
6870
def reshape(self, shape, **kwargs):
6971
nparr = np.reshape(self.__array__(), shape)
7072
logger.debug(f'Reshape: {nparr.shape}')

0 commit comments

Comments
 (0)