Skip to content

Add extra hybrid search RRF duplicate tests #3

Add extra hybrid search RRF duplicate tests

Add extra hybrid search RRF duplicate tests #3

# This workflow kicks off cloud integration tests on pull request review
# from a person that has write access to the repo.
# It will then spin up indexes, run tox tests, and delete the indexes.
# There is also manual trigger to the workflow in which user can specify
# which job to run. Either delete_all_indexes or run_integration_tests.
# Keep in mind that delete_all_indexes will delete ALL indexes in the
# integration tests account that starts with the prefix "test_index".
name: Cloud Integration Tests
on:
workflow_dispatch:
pull_request:
branches:
- mainline
- 'releases/*'
# allows other workflows to reuse these unit tests:
workflow_call:
permissions:
contents: read
jobs:
run-0-replica-1-shard-test:
name: Cloud Integration Tests - 0 Replica, 1 Shard
uses: ./.github/workflows/cloud-integration-tests.yml
secrets: inherit
with:
number_of_replicas: 0

Check failure on line 29 in .github/workflows/master-cloud-integration-tests.yml

View workflow run for this annotation

GitHub Actions / Cloud Integration Tests

Invalid workflow file

The workflow is not valid. .github/workflows/master-cloud-integration-tests.yml (Line: 29, Col: 27): Invalid input, number_of_replicas is not defined in the referenced workflow. .github/workflows/master-cloud-integration-tests.yml (Line: 30, Col: 25): Invalid input, number_of_shards is not defined in the referenced workflow.
number_of_shards: 1
run-1-replica-2-shard-test:
name: Cloud Integration Tests - 1 Replica, 2 Shards
uses: ./.github/workflows/cloud-integration-tests.yml
secrets: inherit
with:
number_of_replicas: 1
number_of_shards: 2