894939d554
Link Checker / linkchecker (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / generate (push) Has been cancelled
CI / test-build-distribution (push) Has been cancelled
CI / twine-check (push) Has been cancelled
Build & Deploy Docs / build-and-deploy (push) Has been cancelled
Integration with Unreleased OpenSearch / test (map[branch:1.x java-version:11]) (push) Has been cancelled
Integration with Unreleased OpenSearch / test (map[branch:2.x java-version:17]) (push) Has been cancelled
Integration with Unreleased OpenSearch / test (map[branch:main java-version:17]) (push) Has been cancelled
Integration Tests / Integ-pre-212 (1.0.1, false) (push) Has been cancelled
Integration Tests / Integ-pre-212 (1.0.1, true) (push) Has been cancelled
Integration Tests / Integ-pre-212 (1.3.7, false) (push) Has been cancelled
Integration Tests / Integ-pre-212 (1.3.7, true) (push) Has been cancelled
Integration Tests / Integ-post-212 (2.14.0, false) (push) Has been cancelled
Integration Tests / Integ-post-212 (2.14.0, true) (push) Has been cancelled
Integration Tests / Integ-post-212 (2.16.0, false) (push) Has been cancelled
Integration Tests / Integ-post-212 (2.16.0, true) (push) Has been cancelled
Testss / test (os=macos-latest, python=3.11) (push) Has been cancelled
Testss / test (os=macos-latest, python=3.12) (push) Has been cancelled
Testss / test (os=ubuntu-latest, python=3.10) (push) Has been cancelled
Testss / test (os=ubuntu-latest, python=3.11) (push) Has been cancelled
Testss / test (os=ubuntu-latest, python=3.12) (push) Has been cancelled
Testss / test (os=ubuntu-latest, python=3.8) (push) Has been cancelled
Testss / test (os=ubuntu-latest, python=3.9) (push) Has been cancelled
Testss / test (os=windows-latest, python=3.11) (push) Has been cancelled
Testss / test (os=windows-latest, python=3.12) (push) Has been cancelled
Unified Release / Assemble (2.8.1) (push) Has been cancelled
Signed-off-by: vidya sagar <160703874+vidyasagarnimmagaddi@users.noreply.github.com>
44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
name: Testss
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
entry:
|
|
- { os: 'ubuntu-latest', python-version: "3.8" }
|
|
- { os: 'ubuntu-latest', python-version: "3.9" }
|
|
- { os: 'ubuntu-latest', python-version: "3.10" }
|
|
- { os: 'ubuntu-latest', python-version: "3.11" }
|
|
- { os: 'macos-latest', python-version: "3.11" }
|
|
- { os: 'windows-latest', python-version: "3.11" }
|
|
- { os: 'ubuntu-latest', python-version: "3.12" }
|
|
- { os: 'macos-latest', python-version: "3.12" }
|
|
- { os: 'windows-latest', python-version: "3.12" }
|
|
|
|
name: test (os=${{ matrix.entry.os }}, python=${{ matrix.entry.python-version }})
|
|
continue-on-error: ${{ matrix.entry.experimental || false }}
|
|
runs-on: ${{ matrix.entry.os }}
|
|
steps:
|
|
- name: Checkout Source Code
|
|
uses: actions/checkout@v4
|
|
- name: Set Up Python - ${{ matrix.entry.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.entry.python-version }}
|
|
env:
|
|
PIP_NO_PYTHON_VERSION_WARNING: 1
|
|
PIP_DISABLE_PIP_VERSION_CHECK: 1
|
|
- name: Install Dependencies
|
|
run: |
|
|
python -m pip install nox
|
|
- name: Run Tests
|
|
run: |
|
|
python -m nox -rs test-${{ matrix.entry.python-version }}
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v4
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
files: ./junit/opensearch-py-codecov.xml
|