~ubuntu-branches/ubuntu/wily/aodh/wily

1 by Thomas Goirand
Import upstream version 1.0.0
1
#!/bin/bash -x
2
set -e
3
4
# Use a mongodb backend by default
5
if [ -z "$AODH_TEST_BACKEND" ]; then
6
    AODH_TEST_BACKEND="mongodb"
7
fi
8
echo $AODH_TEST_BACKEND
9
for backend in $AODH_TEST_BACKEND; do
10
    ./setup-test-env-${backend}.sh ./tools/pretty_tox.sh $*
11
done