From 44f916ca52e1725927f5928a62f032a74fc42d62 Mon Sep 17 00:00:00 2001 From: "Daniel (dB.) Doubrovkine" Date: Fri, 1 Dec 2023 12:35:58 -0500 Subject: [PATCH] Add OpenSearch 2.11.1 integration tests. (#584) * Add OpenSearch 2.11.1 integration tests. Signed-off-by: dblock * Exclude flaky integration tests with OpenSearch 2.0.1. Signed-off-by: dblock --------- Signed-off-by: dblock --- .github/workflows/integration.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 0ca6c823..59990902 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -9,9 +9,14 @@ jobs: strategy: fail-fast: false matrix: - opensearch_version: [ '1.0.1', '1.1.0', '1.2.4', '1.3.7', '2.0.1', '2.1.0', '2.2.1', '2.3.0', '2.4.0', '2.5.0', '2.6.0', '2.7.0', '2.8.0', '2.9.0', '2.10.0', '2.11.0' ] + opensearch_version: [ '1.0.1', '1.1.0', '1.2.4', '1.3.7', '2.0.1', '2.1.0', '2.2.1', '2.3.0', '2.4.0', '2.5.0', '2.6.0', '2.7.0', '2.8.0', '2.9.0', '2.10.0', '2.11.1' ] secured: [ "true", "false" ] - + exclude: + # https://github.com/opensearch-project/opensearch-py/issues/612 + - opensearch_version: 2.0.1 + secured: "true" + - opensearch_version: 2.1.0 + secured: "true" steps: - name: Checkout uses: actions/checkout@v3