Skip to content
Snippets Groups Projects

[LPD] [Dark] Don't use multiprocessing inside multiprocessing when opening run

Merged Thomas Kluyver requested to merge fix/lpd-dark-daemon-children into master
@@ -9,9 +9,7 @@ def pytest_addoption(parser):
default=False,
help="Start release test for all supported calibration notebooks",
)
# detectors_choices = []
# for k in ['agipd', 'jungfrau', 'pnccd', 'epix100', 'all']:
# detectors_choices += [k, k.upper()]
parser.addoption(
"--detectors",
default=["all"],
@@ -20,7 +18,7 @@ def pytest_addoption(parser):
parser.addoption(
"--calibration",
type=str,
type=str.lower,
choices=["correct", "dark", "all"],
default="all",
)
Loading