mirror of
https://github.com/elastic/logstash.git
synced 2025-04-24 14:47:19 -04:00
The internet disabling C hack can break other tests, so, we now run those tests separately. Fixes https://github.com/elastic/logstash/issues/7178 Fixes #7179
16 lines
382 B
Bash
Executable file
16 lines
382 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [[ "$INTEGRATION" != "true" ]]; then
|
|
exit
|
|
fi
|
|
|
|
echo "Running integration tests from qa/integration directory"
|
|
cd qa/integration
|
|
|
|
# The offline specs can break the online ones
|
|
# due to some sideeffects of the seccomp policy interfering with
|
|
# the docker daemon
|
|
# See prepare_offline_pack_spec.rb for details
|
|
rspec --tag ~offline
|
|
rspec --tag offline
|