Coverage for biobb_dna/test/unitests/test_dna/test_timeseries.py: 100%
14 statements
« prev ^ index » next coverage.py v7.14.1, created at 2026-05-28 06:38 +0000
« prev ^ index » next coverage.py v7.14.1, created at 2026-05-28 06:38 +0000
1# type: ignore
2from biobb_common.tools import test_fixtures as fx
3from biobb_dna.dna.dna_timeseries import dna_timeseries
5import logging
6mpl_logger = logging.getLogger("matplotlib")
7mpl_logger.setLevel(logging.ERROR)
10class TestTimeSeries():
11 def setup_class(self):
12 fx.test_setup(self, 'dna_timeseries')
14 def teardown_class(self):
15 fx.test_teardown(self)
17 def test_helpartimeseries(self):
18 returncode = dna_timeseries(properties=self.properties, **self.paths)
19 assert fx.not_empty(self.paths['output_zip_path'])
20 assert fx.exe_success(returncode)