From 04283b5993f57f5713e1bdb0fb57f246cda62365 Mon Sep 17 00:00:00 2001 From: Hideki Saito Date: Wed, 6 Nov 2024 11:07:13 +0900 Subject: [PATCH] [CI] enable integration tests for devel branch * Remote tests * Docker tests Signed-off-by: Hideki Saito --- .azure-pipelines/azure-pipelines.yml | 4 ++-- README.md | 2 -- changelogs/fragments/588_ci_enable_devel.yml | 3 +++ 3 files changed, 5 insertions(+), 4 deletions(-) create mode 100644 changelogs/fragments/588_ci_enable_devel.yml diff --git a/.azure-pipelines/azure-pipelines.yml b/.azure-pipelines/azure-pipelines.yml index 7c7ec26..f19332a 100644 --- a/.azure-pipelines/azure-pipelines.yml +++ b/.azure-pipelines/azure-pipelines.yml @@ -279,7 +279,7 @@ stages: - Remote_2_18 - Docker_2_18 - Sanity_devel - # - Remote_devel # Wait for test environment release - # - Docker_devel # Wait for test environment release + - Remote_devel + - Docker_devel jobs: - template: templates/coverage.yml diff --git a/README.md b/README.md index 31c3e21..5e333f1 100644 --- a/README.md +++ b/README.md @@ -84,8 +84,6 @@ The following ansible-core versions have been tested with this collection: - ansible-core 2.16 (stable) - ansible-core 2.15 (stable) -*Note: For ansible-core 2.18, CI only covers sanity tests and no integration tests will be run until the test environment is released.* - ## Contributing We welcome community contributions to this collection. For more details, see [Contributing to Ansible-maintained collections](https://docs.ansible.com/ansible/devel/community/contributing_maintained_collections.html#contributing-maintained-collections) for complete details. diff --git a/changelogs/fragments/588_ci_enable_devel.yml b/changelogs/fragments/588_ci_enable_devel.yml new file mode 100644 index 0000000..22d50e4 --- /dev/null +++ b/changelogs/fragments/588_ci_enable_devel.yml @@ -0,0 +1,3 @@ +--- +trivial: + - Enabled remote and docker integration tests for devel branch.