aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis/track_status.sh
diff options
context:
space:
mode:
Diffstat (limited to '.travis/track_status.sh')
-rwxr-xr-x.travis/track_status.sh19
1 files changed, 19 insertions, 0 deletions
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