Coverage for src/ufig/config/test_config.py: 100%
6 statements
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-12 19:08 +0000
« prev ^ index » next coverage.py v7.6.9, created at 2024-12-12 19:08 +0000
1# Copyright (C) 2024 ETH Zurich
2# Institute for Particle Physics and Astrophysics
3# Author: Silvan Fischbacher
4# created: Tue Aug 13 2024
7from ivy.loop import Loop
9from ufig.config import common
10from ufig.workflow_util import FiltersStopCriteria
12plugins = [
13 "ufig.plugins.multi_band_setup",
14 "ivy.plugin.show_stats",
15 Loop(
16 [
17 "ufig.plugins.single_band_setup_intrinsic_only",
18 ],
19 stop=FiltersStopCriteria(),
20 ),
21]
23for name in [name for name in dir(common) if not name.startswith("__")]:
24 globals()[name] = getattr(common, name)