Coverage for biobb_ml/test/unitests/test_regression/test_linear_regression.py: 89%

18 statements  

« prev     ^ index     » next       coverage.py v7.5.1, created at 2024-05-07 09:39 +0000

1from biobb_common.tools import test_fixtures as fx 

2from biobb_ml.regression.linear_regression import linear_regression 

3import platform 

4 

5 

6class TestLinearRegression(): 

7 def setup_class(self): 

8 fx.test_setup(self, 'linear_regression') 

9 

10 def teardown_class(self): 

11 fx.test_teardown(self) 

12 pass 

13 

14 def test_linear_regression(self): 

15 linear_regression(properties=self.properties, **self.paths) 

16 assert fx.not_empty(self.paths['output_model_path']) 

17 if platform.system() == 'Darwin': 

18 assert fx.equal(self.paths['output_model_path'], self.paths['ref_output_model_path']) 

19 assert fx.not_empty(self.paths['output_test_table_path']) 

20 if platform.system() == 'Darwin': 

21 assert fx.equal(self.paths['output_test_table_path'], self.paths['ref_output_test_table_path']) 

22 assert fx.not_empty(self.paths['output_plot_path']) 

23 # assert fx.equal(self.paths['output_plot_path'], self.paths['ref_output_plot_path'])