Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
68 changes: 26 additions & 42 deletions .github/workflows/test-target.yml
Original file line number Diff line number Diff line change
Expand Up @@ -274,30 +274,22 @@ jobs:
# ddev will interpret '-m' as an environment to run the e2e test on and fails
# This is not required when no pytest args are provided and it will run all environments
# by default
if [ '${{ inputs.pytest-args }}' = '-m flaky' ]; then
set +e # Disable immediate exit
ddev env test --base --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} -- ${{ inputs.pytest-args }} -k "not fips"
exit_code=$?
if [ $exit_code -eq 5 ]; then
# Flaky test count can be zero, this is done to avoid pipeline failure
echo "No tests were collected."
exit 0
else
exit $exit_code
fi
elif [ '${{ inputs.pytest-args }}' = '-m "not flaky"' ]; then
set +e # Disable immediate exit
ddev env test --base --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} -- ${{ inputs.pytest-args }} -k "not fips"
set +e # Disable immediate exit
PYTEST_ARGS='${{ inputs.pytest-args }}'

if [ "$PYTEST_ARGS" = '-m flaky' ] || [ "$PYTEST_ARGS" = '-m "not flaky"' ]; then
ddev env test --base --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} -- $PYTEST_ARGS -k "not fips"
exit_code=$?
if [ $exit_code -eq 5 ]; then
# Flaky test count can be zero, this is done to avoid pipeline failure
echo "No tests were collected."
exit 0
else
exit $exit_code
fi
else
ddev env test --base --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} ${{ inputs.pytest-args != '' && format('-- {0} -k "not fips"', inputs.pytest-args) || '-- -k "not fips"' }}
exit_code=$?
fi

if [ "$exit_code" -eq 5 ]; then
echo "No tests were collected."
exit 0
else
exit "$exit_code"
fi

- name: Run E2E tests
Expand All @@ -312,30 +304,22 @@ jobs:
# ddev will interpret '-m' as an environment to run the e2e test on and fails
# This is not required when no pytest args are provided and it will run all environments
# by default
if [ '${{ inputs.pytest-args }}' = '-m flaky' ]; then
set +e # Disable immediate exit
ddev env test --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} -- ${{ inputs.pytest-args }} -k "not fips"
exit_code=$?
if [ $exit_code -eq 5 ]; then
# Flaky test count can be zero, this is done to avoid pipeline failure
echo "No tests were collected."
exit 0
else
exit $exit_code
fi
elif [ '${{ inputs.pytest-args }}' = '-m "not flaky"' ]; then
set +e # Disable immediate exit
ddev env test --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} -- ${{ inputs.pytest-args }} -k "not fips"
set +e # Disable immediate exit
PYTEST_ARGS='${{ inputs.pytest-args }}'

if [ "$PYTEST_ARGS" = '-m flaky' ] || [ "$PYTEST_ARGS" = '-m "not flaky"' ]; then
ddev env test --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} -- $PYTEST_ARGS -k "not fips"
exit_code=$?
if [ $exit_code -eq 5 ]; then
# Flaky test count can be zero, this is done to avoid pipeline failure
echo "No tests were collected."
exit 0
else
exit $exit_code
fi
else
ddev env test --new-env --junit ${{ inputs.target }} ${{ inputs.target-env || 'all' }} ${{ inputs.pytest-args != '' && format('-- {0} -k "not fips"', inputs.pytest-args) || '-- -k "not fips"' }}
exit_code=$?
fi

if [ "$exit_code" -eq 5 ]; then
echo "No tests were collected."
exit 0
else
exit "$exit_code"
fi

- name: Run benchmarks
Expand Down
6 changes: 6 additions & 0 deletions activemq_xml/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 5.1.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 5.1.0 / 2025-01-16 / Agent 7.63.0

***Added***:
Expand Down
1 change: 0 additions & 1 deletion activemq_xml/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion activemq_xml/datadog_checks/activemq_xml/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)

__version__ = "5.1.0"
__version__ = "5.1.1"
6 changes: 6 additions & 0 deletions aerospike/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 5.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 5.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion aerospike/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion aerospike/datadog_checks/aerospike/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2019-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '5.0.0'
__version__ = '5.0.1'
6 changes: 6 additions & 0 deletions airflow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 7.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 7.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion airflow/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion airflow/datadog_checks/airflow/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2019
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '7.0.0'
__version__ = '7.0.1'
6 changes: 6 additions & 0 deletions amazon_msk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 7.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 7.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion amazon_msk/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion amazon_msk/datadog_checks/amazon_msk/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2019-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '7.0.0'
__version__ = '7.0.1'
6 changes: 6 additions & 0 deletions ambari/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 6.1.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 6.1.0 / 2025-01-16 / Agent 7.63.0

***Added***:
Expand Down
1 change: 0 additions & 1 deletion ambari/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion ambari/datadog_checks/ambari/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2019-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '6.1.0'
__version__ = '6.1.1'
6 changes: 6 additions & 0 deletions apache/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 7.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 7.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion apache/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion apache/datadog_checks/apache/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)

__version__ = "7.0.0"
__version__ = "7.0.1"
6 changes: 6 additions & 0 deletions appgate_sdp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 2.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 2.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion appgate_sdp/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion appgate_sdp/datadog_checks/appgate_sdp/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2024-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '2.0.0'
__version__ = '2.0.1'
6 changes: 6 additions & 0 deletions arangodb/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 4.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 4.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion arangodb/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion arangodb/datadog_checks/arangodb/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2022-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '4.0.0'
__version__ = '4.0.1'
6 changes: 6 additions & 0 deletions argo_rollouts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 3.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 3.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion argo_rollouts/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion argo_rollouts/datadog_checks/argo_rollouts/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2024-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '3.0.0'
__version__ = '3.0.1'
6 changes: 6 additions & 0 deletions argo_workflows/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 3.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 3.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion argo_workflows/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion argo_workflows/datadog_checks/argo_workflows/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2024-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '3.0.0'
__version__ = '3.0.1'
6 changes: 6 additions & 0 deletions argocd/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 4.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 4.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion argocd/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion argocd/datadog_checks/argocd/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2022-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '4.0.0'
__version__ = '4.0.1'
6 changes: 6 additions & 0 deletions avi_vantage/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 6.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 6.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion avi_vantage/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion avi_vantage/datadog_checks/avi_vantage/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2021-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '6.0.0'
__version__ = '6.0.1'
6 changes: 6 additions & 0 deletions aws_neuron/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 3.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 3.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion aws_neuron/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion aws_neuron/datadog_checks/aws_neuron/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2024-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '3.0.0'
__version__ = '3.0.1'
6 changes: 6 additions & 0 deletions azure_iot_edge/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 6.1.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 6.1.0 / 2025-01-16 / Agent 7.63.0

***Added***:
Expand Down
1 change: 0 additions & 1 deletion azure_iot_edge/changelog.d/20878.fixed

This file was deleted.

2 changes: 1 addition & 1 deletion azure_iot_edge/datadog_checks/azure_iot_edge/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) Datadog, Inc. 2020-present
# All rights reserved
# Licensed under a 3-clause BSD style license (see LICENSE)
__version__ = '6.1.0'
__version__ = '6.1.1'
6 changes: 6 additions & 0 deletions boundary/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

<!-- towncrier release notes start -->

## 4.0.1 / 2025-08-07

***Fixed***:

* Improve descriptions and examples in example configuration file ([#20878](https://github.com/DataDog/integrations-core/pull/20878))

## 4.0.0 / 2025-07-10

***Changed***:
Expand Down
1 change: 0 additions & 1 deletion boundary/changelog.d/20878.fixed

This file was deleted.

Loading
Loading