Coverage for biobb_cmip / test / unitests / test_cmip / test_cmip_run.py: 100%
10 statements
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-15 09:17 +0000
« prev ^ index » next coverage.py v7.14.0, created at 2026-05-15 09:17 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_cmip.cmip.cmip_run import cmip_run
6class TestCmipRun():
7 def setup_class(self):
8 fx.test_setup(self, 'cmip_run')
10 def teardown_class(self):
11 # pass
12 fx.test_teardown(self)
14 def test_cmip_run(self):
15 cmip_run(properties=self.properties, **self.paths)
16 assert fx.not_empty(self.paths['output_byat_path'])
17 # assert fx.equal(self.paths['output_byat_path'], self.paths['ref_output_byat_path'])