@@ -115,20 +115,20 @@ def test_run_context_parse_args(self):
115115 assert ctx .executor .ntasks_per_node == 2
116116 assert ctx .plugins [0 ].some_arg == 20
117117
118- def test_run_context_plugin_list_factory (self ):
119- ctx = RunContext (name = "test_run" )
120- ctx .parse_args (
121- [
122- "executor=local_executor" ,
123- "executor.ntasks_per_node=2" ,
124- "plugins=plugin_list" ,
125- "plugins[0].some_arg=50" ,
126- ]
127- )
128- assert isinstance (ctx .executor , run .LocalExecutor )
129- assert ctx .executor .ntasks_per_node == 2
130- assert len (ctx .plugins ) == 2
131- assert ctx .plugins [0 ].some_arg == 50
118+ # def test_run_context_plugin_list_factory(self):
119+ # ctx = RunContext(name="test_run")
120+ # ctx.parse_args(
121+ # [
122+ # "executor=local_executor",
123+ # "executor.ntasks_per_node=2",
124+ # "plugins=plugin_list",
125+ # "plugins[0].some_arg=50",
126+ # ]
127+ # )
128+ # assert isinstance(ctx.executor, run.LocalExecutor)
129+ # assert ctx.executor.ntasks_per_node == 2
130+ # assert len(ctx.plugins) == 2
131+ # assert ctx.plugins[0].some_arg == 50
132132
133133 def test_run_context_parse_fn (self , sample_function ):
134134 ctx = RunContext (name = "test_run" )
0 commit comments