diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-05 16:22:51 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-03-06 00:10:11 +0300 |
commit | eb4ba34ed3009ee5cec34ed83bab8149e4d6ffc4 (patch) | |
tree | b8629a38f6378cc25cc309a0a9b39f0f8720c10a /.travis/test/show_status.sh | |
parent | StatusTracker: handle SIGTERM also (diff) | |
download | vk-scripts-eb4ba34ed3009ee5cec34ed83bab8149e4d6ffc4.tar.gz vk-scripts-eb4ba34ed3009ee5cec34ed83bab8149e4d6ffc4.zip |
Travis: prettier output
Diffstat (limited to '')
-rwxr-xr-x | .travis/test/show_status.sh | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.travis/test/show_status.sh b/.travis/test/show_status.sh index afba9aa..ff0ce47 100755 --- a/.travis/test/show_status.sh +++ b/.travis/test/show_status.sh @@ -7,13 +7,12 @@ set -o errexit -o nounset -o pipefail -show_status() { - echo 'Running show_status.py...' - python3 -m bin.show_status "$@" +test_users() { + ./.travis/test.sh bin.show_status "$@" } main() { - show_status egor.tensin + test_users egor.tensin } main "$@" |