Skip to content
Snippets Groups Projects
main-run.sh 316 B
Newer Older
#!/bin/bash
#
# Script used on the main performance benchmark machine to run tests.
set -eox pipefail

ROOT=`dirname $0`

source "${ROOT}"/../virtualenv/bin/activate
rm -rf "${ROOT}"/env/

target="${1-1.9:: and tagged()}"
if [ "$#" -ge 1 ]; then
    shift
fi
"${ROOT}"/launch.sh "$target" -s 10 "$@"