Skip to content

Commit

Permalink
flakiness (DataDog#19230)
Browse files Browse the repository at this point in the history
  • Loading branch information
steveny91 authored Dec 9, 2024
1 parent 3f92760 commit 6c3294c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion datadog_checks_downloader/tests/test_downloader.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,11 @@
"datadog-ntp", # excluding this since `ntp` was Agent 5 only
]

EXCLUDED_LOG_INTEGRATIONS = [
# Temporary exclusion until we re-release the integration or come up with a better solution.
"datadog-zeek", # log only integration released by Florent. Will fail until we re-release it.
]

# Specific integration versions released for the last time by a revoked developer but not shipped anymore.
EXCLUDED_INTEGRATION_VERSION = [
"simple/datadog-ibm-mq/datadog_ibm_mq-4.1.0rc1-py2.py3-none-any.whl",
Expand Down Expand Up @@ -454,7 +459,7 @@ def test_downloader():
if not match:
continue
integration_name = match.group(1)
if integration_name in EXCLUDED_INTEGRATIONS:
if integration_name in EXCLUDED_INTEGRATIONS + EXCLUDED_LOG_INTEGRATIONS:
continue
if integration_name not in integrations_metadata:
raise Exception(
Expand Down

0 comments on commit 6c3294c

Please sign in to comment.