deb-ceilometer/run-functional-tests.sh
Julien Danjou 15a424c2e9 tests: replace overtest by pifpaf
Change-Id: Ib26c9c674d438bcbabea9c09cfdab97516e0e227
2016-05-09 16:01:58 +02:00

12 lines
239 B
Bash
Executable File

#!/bin/bash -x
set -e
# Use a mongodb backend by default
if [ -z $CEILOMETER_TEST_BACKEND ]; then
CEILOMETER_TEST_BACKEND="mongodb"
fi
for backend in $CEILOMETER_TEST_BACKEND; do
pifpaf run $backend ./tools/pretty_tox.sh $*
done