blob: 028a4dd8d9571a1ece947bddbbf371430af46379 [file] [log] [blame]
#!/bin/bash
set -xe
function _info(){
echo -e "=== INFO: NEWTON"
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 "$@"