From 62481861a04922e238f13ccef78f5e58100c3c93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Rebollo=20P=C3=A9rez?= Date: Wed, 24 May 2023 12:55:21 +0100 Subject: [PATCH] Skip Logcollector IT `test_age_datetime_changed` (#4182) * feat(#4986): skip unstable age datetime it * docs(#4986): update changelog --- CHANGELOG.md | 1 + .../test_logcollector/test_age/test_age_datetime_changed.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 51ce720f40..6088d74d03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,7 @@ All notable changes to this project will be documented in this file. ### Fixed +- Skip test_age_datetime_changed ([#4182](https://github.com/wazuh/wazuh-qa/pull/4182)) \- (Tests) - Limit urllib3 major required version ([#4162](https://github.com/wazuh/wazuh-qa/pull/4162)) \- (Framework) - Fix daemons_handler fixture (fix GCP IT) ([#4134](https://github.com/wazuh/wazuh-qa/pull/4134)) \- (Tests) - Fix wazuhdb IT. ([#3584](https://github.com/wazuh/wazuh-qa/pull/3584)) \- (Framework + Tests) diff --git a/tests/integration/test_logcollector/test_age/test_age_datetime_changed.py b/tests/integration/test_logcollector/test_age/test_age_datetime_changed.py index 8ae548b185..304381928d 100644 --- a/tests/integration/test_logcollector/test_age/test_age_datetime_changed.py +++ b/tests/integration/test_logcollector/test_age/test_age_datetime_changed.py @@ -82,7 +82,7 @@ DAEMON_NAME = "wazuh-logcollector" -local_internal_options = {'logcollector.vcheck_files': '0', 'logcollector.debug': '2', 'monitord.rotate_log': '0', +local_internal_options = {'logcollector.vcheck_files': '0', 'logcollector.debug': '2', 'monitord.rotate_log': '0', 'windows.debug': '2'} timeout_logcollector_read = 10 @@ -136,7 +136,7 @@ def restart_logcollector_function(): @pytest.mark.parametrize('new_datetime', new_host_datetime) -@pytest.mark.skipif(sys.platform == 'win32', reason='It will be blocked by https://github.com/wazuh/wazuh-qa/issues/2174.') +@pytest.mark.skip("Skipped by Issue #3218") def test_configuration_age_datetime(get_configuration, configure_environment, configure_local_internal_options_module, restart_monitord, restart_logcollector_function, file_monitoring, new_datetime, get_files_list, create_file_structure_function):