mirror of
https://github.com/elastic/logstash.git
synced 2025-04-22 05:37:21 -04:00
10 lines
168 B
Bash
Executable file
10 lines
168 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
|
|
rspec
|