Skip to content

Commit

Permalink
Fix test fixture logic
Browse files Browse the repository at this point in the history
  • Loading branch information
erikzaadi committed Oct 22, 2024
1 parent 036d2be commit 6c56615
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions port_ocean/tests/helpers/ocean_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ def get_integation_resource_configs(integration_path: str) -> List[ResourceConfi
config_file_path = f"{integration_path}/.port/resources/port-app-config."
if not Path(f"{config_file_path}yml").exists():
config_file_path = f"{config_file_path}yaml"
else:
config_file_path = f"{config_file_path}yml"

with open(config_file_path) as port_app_config_file:
resource_configs = safe_load(port_app_config_file)
Expand Down

0 comments on commit 6c56615

Please sign in to comment.