1import parsl 2from parsl.config import Config 3from parsl.executors.threads import ThreadPoolExecutor 4 5 6def make_ci_config(): 7 return Config( 8 executors=[ThreadPoolExecutor(max_threads=4, label="threads")], 9 strategy="none", 10 )
7def make_ci_config(): 8 return Config( 9 executors=[ThreadPoolExecutor(max_threads=4, label="threads")], 10 strategy="none", 11 )