2
0
mirror of https://github.com/m-labs/artiq.git synced 2024-12-26 03:38:25 +08:00

tools/get_experiment: do not autodetect experiments starting with _

This commit is contained in:
Sebastien Bourdeauducq 2015-09-01 13:21:03 -06:00
parent f602928e89
commit a059ebf36a

View File

@ -51,7 +51,7 @@ def get_experiment(module, experiment=None):
return getattr(module, experiment) return getattr(module, experiment)
exps = [(k, v) for k, v in module.__dict__.items() exps = [(k, v) for k, v in module.__dict__.items()
if is_experiment(v)] if k[0] != "_" and is_experiment(v)]
if not exps: if not exps:
raise ValueError("No experiments in module") raise ValueError("No experiments in module")
if len(exps) > 1: if len(exps) > 1: