diff --git a/.github/workflows/code_analysis.yaml b/.github/workflows/code_analysis.yaml index 5e88e4af6c..92eb675295 100644 --- a/.github/workflows/code_analysis.yaml +++ b/.github/workflows/code_analysis.yaml @@ -1,5 +1,5 @@ name: Code analysis -on: # yamllint disable-line rule:truthy +on: pull_request: types: - opened diff --git a/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py b/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py index 6ae2a0df2f..e41c36d55d 100644 --- a/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py +++ b/deps/wazuh_testing/wazuh_testing/tools/performance/visualization.py @@ -218,7 +218,7 @@ def __init__(self, dataframes_paths, store_path=gettempdir(), base_name=None, un base_name (str, optional): Base name for saved visualizations. Defaults to None. unify_child_daemon_metrics (bool, optional): Whether to unify child daemon metrics. Defaults to False. """ - super().__init__(dataframes_paths, store_path, base_name) + super().__init__(testing, store_path, base_name) self._validate_dataframe() if unify_child_daemon_metrics: self.dataframe = self.dataframe.reset_index(drop=False)