Skip to content

Commit f1e4e11

Browse files
mashhursdonoghuc
andauthored
Removes secure_integration tag from CI script since it is internally handled. (#198)
* Removes secure_integration tag since it is internally handled * Update .ci/logstash-run.sh Remove `secure_integration ` with unit tests as well. Co-authored-by: Cas Donoghue <[email protected]> --------- Co-authored-by: Cas Donoghue <[email protected]>
1 parent 5abbe49 commit f1e4e11

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.ci/logstash-run.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,10 @@ wait_for_es() {
2424
}
2525

2626
if [[ "$INTEGRATION" != "true" ]]; then
27-
bundle exec rspec --format=documentation spec/filters --tag ~integration --tag ~secure_integration
27+
bundle exec rspec --format=documentation spec/filters --tag ~integration
2828
else
29-
if [[ "$SECURE_INTEGRATION" == "true" ]]; then
30-
extra_tag_args="--tag secure_integration"
31-
else
32-
extra_tag_args="--tag ~secure_integration --tag integration"
33-
fi
29+
# SECURE_INTEGRATION is handled inside the specs
30+
extra_tag_args="--tag integration"
3431

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

0 commit comments

Comments
 (0)