Skip to content
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
9 changes: 3 additions & 6 deletions .ci/logstash-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,10 @@ wait_for_es() {
}

if [[ "$INTEGRATION" != "true" ]]; then
bundle exec rspec --format=documentation spec/filters --tag ~integration --tag ~secure_integration
bundle exec rspec --format=documentation spec/filters --tag ~integration
else
if [[ "$SECURE_INTEGRATION" == "true" ]]; then
extra_tag_args="--tag secure_integration"
else
extra_tag_args="--tag ~secure_integration --tag integration"
fi
# SECURE_INTEGRATION is handled inside the specs
extra_tag_args="--tag integration"

wait_for_es
bundle exec rspec --format=documentation $extra_tag_args --tag update_tests:painless --tag es_version:$ELASTIC_STACK_VERSION spec/filters/integration
Expand Down