We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d61d8c commit 654f4caCopy full SHA for 654f4ca
parsl/tests/configs/local_threads_no_cache.py
parsl/tests/test_python_apps/test_memoize_2.py
@@ -4,7 +4,17 @@
4
5
import parsl
6
from parsl.app.app import python_app
7
-from parsl.tests.configs.local_threads_no_cache import fresh_config as local_config
+from parsl.config import Config
8
+from parsl.executors.threads import ThreadPoolExecutor
9
+
10
11
+def local_config():
12
+ return Config(
13
+ executors=[
14
+ ThreadPoolExecutor(max_threads=4),
15
+ ],
16
+ app_cache=False
17
+ )
18
19
20
@python_app
0 commit comments