Skip to content

Updated opensearch-py to reflect the latest OpenSearch API spec #2069

Updated opensearch-py to reflect the latest OpenSearch API spec

Updated opensearch-py to reflect the latest OpenSearch API spec #2069

Workflow file for this run

name: Integration Tests
on: [push, pull_request]
jobs:
integration-pre-212:
name: Integ-pre-212
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
opensearch_version: [ '1.0.1', '1.3.7' ]
secured: [ "true", "false" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Integ OpenSearch secured=${{ matrix.secured }} version=${{ matrix.opensearch_version }}
run: "./.ci/run-tests ${{ matrix.secured }} ${{ matrix.opensearch_version }}"
integration-post-212:
name: Integ-post-212
runs-on: ubuntu-latest
env:
OPENSEARCH_URL: 'https://admin:myStrongPassword123!@localhost:9200'
OPENSEARCH_INITIAL_ADMIN_PASSWORD: 'myStrongPassword123!'
strategy:
fail-fast: false
matrix:
opensearch_version: [ '2.14.0', '2.16.0' ]
secured: [ "true", "false" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Integ OpenSearch secured=${{ matrix.secured }} version=${{ matrix.opensearch_version }}
run: "./.ci/run-tests ${{ matrix.secured }} ${{ matrix.opensearch_version }}"