blob: 18c8d80e0e4fe756fa2a461a156e9b3d3c9c5582 [file] [log] [blame]
azvyagintsevf19ddc82018-02-20 18:39:32 +02001#!/bin/bash
2
3set -xe
4
5function _info(){
6 set +x
7 echo -e "=== INFO: tempest version:"
8 tempest --version
9 echo -e "=== INFO: installed plugins:"
10 tempest list-plugins
11 echo -e "=== INFO: tempest pip's:"
12 pip freeze |grep -i tempest | sort
13 echo -e "============================"
14 set -x
15}
16
17_info
18exec "$@"