Esempio n. 1
0
def _build_xclim():
    import sys

    objs = {p.__class__.__name__: p.__class__ for p in processes}

    mod = xclim.build_module("finch.processes.xclim",
                             objs,
                             doc="""XCLIM Processes""")
    sys.modules["finch.processes.xclim"] = mod
    return mod
Esempio n. 2
0
 def test_nonexistent_process_build_failure(self):
     name = ""
     objs = {"k1": "v1", "k2": "v2"}
     with pytest.raises(AttributeError):
         build_module(name, objs, mode="warn")
Esempio n. 3
0
 def test_loud_build_failure(self):
     name = ""
     objs = {"k1": None, "k2": None}
     with pytest.warns(Warning):
         build_module(name, objs, mode="warn")
Esempio n. 4
0
 def test_raise_build_failure(self):
     name = ""
     objs = {"k1": None, "k2": None}
     with pytest.raises(NotImplementedError):
         build_module(name, objs, mode="raise")
Esempio n. 5
0
 def test_configured_build_failure(self):
     name = ""
     objs = {"k1": None, "k2": None}
     with pytest.raises(AttributeError):
         build_module(name, objs, mode="bananas")
Esempio n. 6
0
 def test_quiet_build_failure(self):
     name = None
     objs = {}
     with pytest.raises(TypeError):
         build_module(name, objs, mode="ignore")
Esempio n. 7
0
 def test_nonexistent_process_build_failure(self):
     name = ""
     objs = {'k1': 'v1', 'k2': 'v2'}
     with pytest.raises(AttributeError):
         build_module(name, objs, mode='warn')
Esempio n. 8
0
 def test_raise_build_failure(self):
     name = ""
     objs = {'k1': None, 'k2': None}
     with pytest.raises(NotImplementedError):
         build_module(name, objs, mode='raise')
Esempio n. 9
0
 def test_loud_build_failure(self):
     name = ""
     objs = {'k1': None, 'k2': None}
     with pytest.warns(Warning):
         build_module(name, objs, mode='warn')