@@ -1494,7 +1494,6 @@ def parse(self, tool_source: ToolSource, guid: Optional[str] = None, dynamic: bo
14941494 self .edam_operations = None
14951495 self .edam_topics = None
14961496
1497- self .__parse_trackster_conf (tool_source )
14981497 # Record macro paths so we can reload a tool if any of its macro has changes
14991498 self ._macro_paths = tool_source .macro_paths
15001499 self .ports = tool_source .parse_interactivetool ()
@@ -1555,15 +1554,6 @@ def __parse_config_files(self, tool_source: ToolSource):
15551554 self .config_files .extend (tool_source .parse_template_configfiles ())
15561555 self .config_files .extend (tool_source .parse_file_sources ())
15571556
1558- def __parse_trackster_conf (self , tool_source ):
1559- self .trackster_conf = None
1560- if not hasattr (tool_source , "root" ):
1561- return
1562-
1563- # Trackster configuration.
1564- if (trackster_conf := tool_source .root .find ("trackster_conf" )) is not None :
1565- self .trackster_conf = TracksterConfig .parse (trackster_conf )
1566-
15671557 def parse_tests (self ):
15681558 if self .tool_source :
15691559 test_descriptions = parse_tool_test_descriptions (self .tool_source , self .id )
@@ -4598,20 +4588,6 @@ def _rerun_remap_job_id(trans, incoming, tool_id: Optional[str]) -> Optional[int
45984588 return rerun_remap_job_id
45994589
46004590
4601- class TracksterConfig :
4602- """Trackster configuration encapsulation."""
4603-
4604- def __init__ (self , actions ):
4605- self .actions = actions
4606-
4607- @staticmethod
4608- def parse (root ):
4609- actions = []
4610- for action_elt in root .findall ("action" ):
4611- actions .append (SetParamAction .parse (action_elt ))
4612- return TracksterConfig (actions )
4613-
4614-
46154591class SetParamAction :
46164592 """Set parameter action."""
46174593
0 commit comments