logstash/ci/travis_integration_run.sh
Andrew Cholakian bb60eb8f47 Run offline specs separately from online ones.
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
2017-05-22 15:28:27 +00:00

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