Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip Search Pipeline integration tests for OpenSearch versions below 2.9.0 #13344

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
"Test basic pipeline crud":
- skip:
version: " - 2.6.99"
reason: "Added in 2.7.0"
version: " - 2.8.99"
reason: "Added in 2.9.0"
- do:
search_pipeline.put:
id: "my_pipeline"
Expand Down Expand Up @@ -32,8 +32,8 @@
---
"Test Put Versioned Pipeline":
- skip:
version: " - 2.6.99"
reason: "Added in 2.7.0"
version: " - 2.8.99"
reason: "Added in 2.9.0"
- do:
search_pipeline.put:
id: "my_pipeline"
Expand Down Expand Up @@ -125,8 +125,8 @@
---
"Test Get All Pipelines":
- skip:
version: " - 2.6.99"
reason: "Added in 2.7.0"
version: " - 2.8.99"
reason: "Added in 2.9.0"
- do:
search_pipeline.put:
id: "first_pipeline"
Expand All @@ -152,8 +152,8 @@
---
"Test invalid config":
- skip:
version: " - 2.6.99"
reason: "Added in 2.7.0"
version: " - 2.8.99"
reason: "Added in 2.9.0"
- do:
catch: /parse_exception/
search_pipeline.put:
Expand Down
Loading