cf15d5a9de
This runs most of the functional tests in the normal tox target. (all except those tagged live). Change-Id: Icf69ff743ba223c1b08abe858f567babfaaa64cf
8 lines
194 B
Bash
Executable File
8 lines
194 B
Bash
Executable File
#!/bin/bash -x
|
|
set -e
|
|
AODH_TEST_DRIVERS=${AODH_TEST_DRIVERS:-postgresql}
|
|
for indexer in ${AODH_TEST_DRIVERS}
|
|
do
|
|
pifpaf -g AODH_TEST_STORAGE_URL run $indexer -- ./tools/pretty_tox.sh $*
|
|
done
|