dcdfe266a2
Co-Authored-By: Ryota MIBU <r-mibu@cq.jp.nec.com> Change-Id: I080e666f92f5a3231e32d7b19e712fa17801bbc9
13 lines
169 B
Bash
Executable File
13 lines
169 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [ "$1" = "--coverage" ]; then
|
|
COVERAGE_ARG="$1"
|
|
shift
|
|
fi
|
|
|
|
export AODH_TEST_STORAGE_URL="hbase://__test__"
|
|
|
|
# Yield execution to venv command
|
|
$*
|