blob: 610c17eaf54ef972e430a09d603e338258ba7e91 [file] [log] [blame]
#!/bin/bash
set -xe
function _info(){
echo -e "=== INFO: PIKE"
cat /etc/build_timestamp || true
set +x
echo -e "=== INFO: tempest version:"
tempest --version
echo -e "=== INFO: installed plugins:"
tempest list-plugins
echo -e "=== INFO: tempest pip's:"
pip freeze |grep -i tempest | sort
echo -e "============================"
set -x
}
_info
exec "$@"