Coverage for venv1 / lib / python3.10 / site-packages / combinatrix / test / fixtures / settings_csv.py: 0%

9 statements  

« prev     ^ index     » next       coverage.py v7.13.5, created at 2026-05-04 09:41 +0100

1import os 

2from combinatrix.testintegration import rel2abs 

3 

4 

5class SettingsCSVFactory(object): 

6 

7 @classmethod 

8 def get_csv_path(cls, ident): 

9 path = rel2abs(__file__, "..", "resources", "fixtures", ident + ".settings.csv") 

10 if os.path.exists(path): 

11 return path 

12 return None