diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | .travis/track_status.sh | 19 |
2 files changed, 21 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 4c87aee..93bd59c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,4 +6,6 @@ python: - '3.7' install: script: + - python3 -m bin.mutual_friends kreed58 maxkorzh_official - python3 -m bin.show_status egor.tensin + - ./.travis/track_status.sh diff --git a/.travis/track_status.sh b/.travis/track_status.sh new file mode 100755 index 0000000..3702676 --- /dev/null +++ b/.travis/track_status.sh @@ -0,0 +1,19 @@ +#!/usr/bin/env bash + +set -o errexit -o nounset -o pipefail + +main() { + local log_path + log_path="$( mktemp )" + + nohup python3 -m bin.track_status egor.tensin > "$log_path" 2>&1 & + local pid="$!" + + sleep 15 + kill -SIGINT "$pid" + wait "$pid" + + cat "$log_path" +} + +main |