Skip to content

Commit

Permalink
fix: refine subflow field filtering to include '|' character check (#…
Browse files Browse the repository at this point in the history
…4277)

* Refine subflow field filtering to include '|' character check

* Add resource cleanup in test_components_path to ensure proper closure

* Remove unnecessary try-finally block in test_cli.py

* Remove unused pytest fixture decorator from test_components_path function

* Update test duration tracking in backend tests
  • Loading branch information
ogabrielluiz authored Oct 25, 2024
1 parent 78e6ee1 commit ee101e6
Show file tree
Hide file tree
Showing 3 changed files with 602 additions and 426 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def add_inputs_to_build_config(self, inputs_vertex: list[Vertex], build_config:
async def generate_results(self) -> list[Data]:
tweaks: dict = {}
for field in self._attributes:
if field != "flow_name":
if field != "flow_name" and "|" in field:
[node, name] = field.split("|")
if node not in tweaks:
tweaks[node] = {}
Expand Down
Loading

0 comments on commit ee101e6

Please sign in to comment.